mirror of
https://github.com/fluencelabs/aqua-playground
synced 2025-03-28 10:51:27 +00:00
8 lines
171 B
Plaintext
8 lines
171 B
Plaintext
|
|
func test1() -> u64:
|
|
res = 1 + 2 - 3 * 5 - 2 * 3 / 2 + 5
|
|
<- res
|
|
|
|
func test2() -> u64:
|
|
res = 2 ** 2 ** (2 * 2 - 2) + 2 - 3 * 5 - 2 * 3 / 2 + 5 + (4 % 2 - 2)
|
|
<- res |