blob: 82603e07c161fb401fcfced163c454efb395bd86 (
plain)
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
|
puti @= fn(x: int) {
#C("printf(\"%ld\\n\", (long)x);
");
};
putf @= fn(x: float) {
#C("printf(\"%f\\n\", (double)x);
");
};
// f @= fn() {
// each i := 1..4 {
// puti(i);
// }
// each i := 4,-1..1 {
// puti(i);
// }
// each i := 1.0..4.0 {
// putf(i);
// }
// each i := 7.0,-1..4.0 {
// putf(i);
// }
// // each i := 0.0,-3.0.. { putf(i); }
// foo := new(int, 3);
// each _, i := foo {
// foo[i] = i;
// };
// each x := foo {
// puti(x);
// }
// each _ := foo {
// #C("puts(\"Hello!\")");
// }
// bar : [3]int;
// each _, i := bar {
// bar[i] = i*i*i;
// };
// each x := bar {
// puti(x);
// }
// };
g @= fn() int {
// foo : [10]int; // = new(int, 10);
// each _, i := foo {
// foo[i] = i;
// };
// total := 0;
// each x := foo {
// total = total + x;
// }
// total
total := 0;
each i := 1..10 {
total = total + i;
total
}
// total := 0;
// each i, j := 1..10 {
// total = total + i * j;
// }
// total
};
main @= fn() {
puti(g());
X @= g();
puti(X);
};
|