-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunny.txt
executable file
·229 lines (181 loc) · 4.14 KB
/
funny.txt
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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
{x->
print("ci siamo ;)");
println(" ");
x = 10;
x /= 4e4;
x /= 4e-2;
x += -4e-2;
x += 4.2213;
x += -456.12;
print(x);
//i commenti funzionano
}
/*
{_true _false _if ->
_true = {(t f) -> t};
_false = {(t f) -> f};
_if = {(c t e) -> c(t, e)()};
print("ci", "siamo");
println(_if(_false , {-> while true do {} od}, {-> "False"}))
}
*/
/*
{x ->
x = 0;
if x != 0 && 1/x != 0 then println("Ok") else println("Ko") fi
}
*/
/*
{average sqr abs sqrt x magTen ->
average = {(x y) -> (x + y) / 2};
sqr = {(x) -> x * x};
abs = {(x) -> if x >= 0 then x else -x fi};
sqrt = {(x) tolerance isGoodEnough improve sqrtIter ->
tolerance = 1e-30;
isGoodEnough = {(guess) -> abs(sqr(guess) - x) < tolerance};
improve = {(guess) -> average(guess, x / guess)};
sqrtIter = {(guess) ->
if isGoodEnough(guess) then guess else sqrtIter(improve(guess)) fi
};
sqrtIter(1)
};
x = 16;
println("abs(-123): ", abs(-123));
print();
}
*/
/*
{coin change ->
coin = {(index) ->
if index == 0
then 500
else if index == 1
then 200
else if index == 2
then 100
else if index == 3
then 50
else if index == 4
then 20
else if index == 5
then 10
else if index == 6
then 5
fi
fi
fi
fi
fi
fi
fi
};
change = {(amount index) ->
if amount == 0 then 1
else if amount < 0 then 0
else if index >= 7 then 0
else change(amount, index + 1) + change(amount - coin(index), index)
fi
fi
fi
};
println(change(50, 0))
}
*/
/*
{makeCounter myCounter yourCounter n ->
makeCounter = {(balance) ->
{(amount) -> balance += amount}
};
//inizializzo, ogni counter avrà la propria variabile balance
//tutte le volte in cui il codice incontra una graffa aperta, crea una nuova clousure
myCounter = makeCounter(100);
yourCounter = makeCounter(50);
println("myCounter: ", myCounter(0));
println("yourCounter: ", yourCounter(0));
println();
n = 0;
while n < 10 do
//deposito 50
println("myCounter[", n, "]: ", myCounter(50));
//prelevo 10
println("yourCounter[", n, "]: ", yourCounter(-10));
println();
n += 1
od
}
*/
/*
{isOdd isEven ->
isOdd = {(n) -> if n == 0 then false else isEven(n - 1) fi};
isEven = {(n) -> if n == 0 then true else isOdd(n - 1) fi};
println(isEven(1000));
}
*/
/*
{-> println({->} + "a")}
*/
//eccezione
/*
{a sqr x ->
sqr = {(x) -> x * x};
x = {(z) -> sqr};
println(x(2)(3));
println(10/2);
println(20 / 2);
println({(x)->{() -> x}}(4)());
7(8);
a = 1024 * 1024 * 1024 * 1024 * 1024 * 1024 * 1024 * 1024 * 1024;
println(a);
println(1 / a);
println(1 / a * a);
println(1 / a * a == 1);
println(3.27 % .7);
}
*/
/*
{fib ->
fib = {(n) ->
if n < 2 then n else fib(n - 1) + fib(n - 2) fi
};
println(fib(40))
}
*/
//eccezione
/*
{fib ->
fib = {(n) fib0 fib1 fib ->
fib0 = 1;
fib1 = 0;
while n > 0 do
fib = fib0 + fib1;
fib0 = fib1;
fib1 = fib;
n -= 1
od;
fib1
};
println(fib(10000))
}
*/
/*
{hanoi ->
hanoi = {(n from to via) ->
if n > 0 then
hanoi(n - 1, from, via, to);
println(from, " -> ", to);
hanoi(n - 1, via, to, from)
fi
};
hanoi(10, "left", "right", "center")
}
*/
/*
{ pair head tail tree ->
pair = {(h t) -> {(p) -> p(h, t)}};
head = {(p) -> p({(h t) -> h})};
tail = {(p) -> p({(h t) -> t})};
tree = pair(1, pair(pair("two", 42), pair(true, nil)));
//println(head(head(tail(tree))));
}
*/
// a line comment