-
Notifications
You must be signed in to change notification settings - Fork 164
/
Copy pathblock-statements.tact
77 lines (68 loc) · 1.29 KB
/
block-statements.tact
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
import "@stdlib/deploy";
fun computeWithSubsequentBlocks(): Int {
let b: Int = 100;
{
let a: Int = 456;
b += a;
}
{
let a: Int = 752;
b += a;
}
return b;
}
fun computeWithNestedBlocks(): Int {
let x1: Int = 42;
{
let x: Int = 42;
{
x1 += x;
}
}
return x1;
}
const SubsequentConstant: Int = computeWithSubsequentBlocks();
const NestedConstant: Int = computeWithNestedBlocks();
contract Test with Deployable {
receive("test") {}
get fun A(): Int {
let x1: Int = 42;
{
let x: Int = 42;
{
x1 += x;
}
}
return x1;
}
get fun B(): Int {
let b: Int = 100;
{
let a: Int = 456;
b += a;
}
{
let a: Int = 752;
b += a;
}
return b;
}
get fun C(): Int {
let b: Int = 100;
{
let a: Int = 456;
b += a;
}
{
let a: Slice = beginCell().storeBool(true).asSlice();
b += a.bits();
}
return b;
}
get fun D(): Int {
return SubsequentConstant;
}
get fun E(): Int {
return NestedConstant;
}
}