-
Notifications
You must be signed in to change notification settings - Fork 1
/
test.f
213 lines (190 loc) · 3.47 KB
/
test.f
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
// Examples from README.md
//do [
// functionWithArguments argument1 argument2 argument3;
// functionWithoutArguments ();
//];
do [
identityFunction := [|x| x ];
secondArg := [|x y| y ];
helloWorld := [ print "hello"; print "world" ];
];
do [
// Add two numbers with infix syntax
3 + 4; // => 7
// Add two numbers without infix syntax
(+) 4 4; // => 8
// Add more numbers without infix syntax
(+) 1 3 5; // => 9
];
do [
all true true false; // => false
any true true false; // => true
any false; // => false
all true (not false); // => true
any (); // => false
all (); // => true
];
do [
true and: true; // => true
false and: not true; // => false
or false false; // => false
(1 = 1) or: (2 > 3); // => true
];
do [
true and: [ print "hello world"; false ];
// => false (and does print)
false and: [ print "hello world"; false ];
// => false (and does not print)
];
do [
factorial := [|n|
if [n = 0] [
1
] else [
n * factorial (n - 1)
]
];
];
do [
fibonacci := [|n|
if [n = 1] [
1
] else if [n = 2] [
2
] else [
fibonacci (n - 1) + fibonacci (n - 2)
]
];
];
do [
if := [|condition action ...|
do (either condition () action [do ...])
];
else := [|...|
do ...
];
];
do [
factorial := [|n|
total := reference 1;
i := reference n;
while [!i > 0] [
total <- !total * !i;
i <- !i - 1
];
!total
];
];
do [
factorial := [|n|
total := reference 1;
i := reference n;
until [!i = 0] [
total <- !total * !i;
i <- !i - 1
];
!total
];
until := [|condition action|
while [not condition ()] [
do action
]
];
];
do [
repeat := [|action conditional ...|
do action;
do conditional ... action
];
// count down
count := reference 10;
repeat [
print (!count);
count <- !count - 1
] while [!count >= 0];
// count up
count <- 0;
repeat [
count <- !count + 1;
print (!count)
] until [!count = 10];
];
do [
postModifier := [|fun|
[|ref|
value := !ref;
ref <- fun (!ref);
value ]
];
incr := postModifier [|x| x + 1];
// usage example
i := reference 5;
print (!i) (incr i) (!i); // prints 5 5 6
];
do [
xs := {1 2 3};
foreach [|x| x + 1] xs;
];
do [
xs := {1 2 3};
foreach |x| xs [
x + 1
];
// == foreach [|x| x + 1 ] xs
];
do [
withOpenFile |file| "my-file.txt" "w" [
file writeLine: "First line...";
file writeLine: "Some more lines...";
file writeLine: "Last line."
];
];
do [
foreach |x ({1 2 3}) y ({4 5 6})| [
print x y // prints 1 4; 2 5; 3 6
];
// == foreach [|x y| print x y ] {1 2 3} {4 5 6}
];
do [
do |x (5) y (10)| [ x + y ]; // => 15
// == do [|x y| x + y ] 5 10
];
do [
// ARGV Test
print ...;
];
do[
list := [|...|
myList := {...};
myList
];
print(list 1 2 3); // => {1, 2, 3}
plus := [|...|
do |x y| ... [
x + y
]
];
print (plus 2 2); // => 4
printTwice := [|...|
print ... ...;
];
printTwice "hello"; // stdout => hello hello
];
do [|...inner|
print inner;
print ...(inner);
print (...);
] 1 2 3;
do [
print (a := 5 + 6);
];
do [
print ("5**4");
print (5**4);
];
do [
print(a:="Inline Semicolon";a)
];
do [
print "No semicolon"
]