mirror of
https://github.com/allaunthefox/Research-Stack.git
synced 2026-07-31 03:05:21 +00:00
11 lines
222 B
Text
11 lines
222 B
Text
// Tardygrada — Constitution & Freeze Example
|
|
|
|
agent Secure {
|
|
invariant(trust_min: @verified)
|
|
invariant(non_empty)
|
|
|
|
data: str = "initial value"
|
|
freeze data @verified
|
|
|
|
let locked: int = 42 @verified
|
|
}
|