lama_byterun/regression/test092.lama

20 lines
280 B
Text
Raw Normal View History

2020-01-05 03:33:17 +03:00
fun f (l) {
2020-01-14 03:30:17 +03:00
infix === at == (a, b) {
2020-01-05 03:33:17 +03:00
a == b
}
case l of
{} -> 1
| {_} -> 1
| a : b : tl -> a === b && f (b : tl)
esac
}
local x = read ();
write (f ({}));
write (f (1:{}));
2020-01-05 03:33:17 +03:00
write (f ({1, 1}));
write (f ({1, 1, 1}));
write (f ({1, 2, 1}))