Skip to content

Instantly share code, notes, and snippets.

@saibakatar
Created October 18, 2018 07:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save saibakatar/77781635267fd5191cc564ae20e38e28 to your computer and use it in GitHub Desktop.
Save saibakatar/77781635267fd5191cc564ae20e38e28 to your computer and use it in GitHub Desktop.
Boolean declaration in Scilla
contract Boolean()
field a : Option Bool = None {Bool} (*declaring variable a with no value*)
field b : Bool = True (*declaring variable b with some fixed value*)
transition update_value()
(*updating variable a*)
c = False; (*declaring variable c in the transition*)
tmp = Some {Bool} c;
a := tmp;
(*updating variable b*)
d= False;
b:= d
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment