Pair declaration in Scilla
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
contract Pairs() | |
field a: Pair (String) (Uint32) = | |
let c= "Hello" in | |
let d = Uint32 5 in | |
Pair {(String) (Uint32)} c d (*declaring variable a with no value*) | |
field b: Pair (String) (Option Uint32) = | |
let e= "" in | |
let f = None {Uint32} in | |
Pair {(String) (Option Uint32)} e f (*declaring variable b with fixed value*) | |
transition update_value() | |
h = let i = "Hello World" in | |
let j = Uint32 6 in | |
Pair {(String)(Uint32)} i j; (*declaring variable h with fixed value in transition*) | |
(*Updating variable a*) | |
a:= h; | |
(*Updating variable b*) | |
k = let l = "Hello again, World" in | |
let m = Uint32 7 in | |
let n = Some {Uint32} m in | |
Pair {(String)(Option Uint32)} l n; | |
b:= k | |
end | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Map