lama_byterun/regression/test092.lama
Dmitry Boulytchev 61296c51e7 Massive renaming
2020-02-16 00:21:15 +03:00

19 lines
279 B
Text

fun f (l) {
infix === at == (a, b) {
a == b
}
case l of
{} -> 1
| {_} -> 1
| a : b : tl -> a === b && f (b : tl)
esac
}
local x = read ();
write (f ({}));
write (f ({1}));
write (f ({1, 1}));
write (f ({1, 1, 1}));
write (f ({1, 2, 1}))