mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-06 06:48:48 +00:00
24 lines
342 B
Text
24 lines
342 B
Text
|
|
fun map (f, l) {
|
||
|
|
case l of
|
||
|
|
{} -> {}
|
||
|
|
| h : tl -> (f (h) : map (f, tl))
|
||
|
|
esac
|
||
|
|
}
|
||
|
|
|
||
|
|
fun a (x) { x + 1}
|
||
|
|
fun b (x) { x + 2}
|
||
|
|
|
||
|
|
fun print_list (x) {
|
||
|
|
case x of
|
||
|
|
{} -> skip
|
||
|
|
| h : tl -> write (h); print_list (tl)
|
||
|
|
esac
|
||
|
|
}
|
||
|
|
|
||
|
|
local x = read ();
|
||
|
|
|
||
|
|
print_list ({1, 2, 3});
|
||
|
|
print_list (map (a, {1, 2, 3}));
|
||
|
|
print_list (map (b, {1, 2, 3}))
|
||
|
|
|