mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-05 22:38:44 +00:00
15 lines
No EOL
232 B
Text
15 lines
No EOL
232 B
Text
fun hd (l) {
|
|
case l of
|
|
h : _ -> h
|
|
esac
|
|
}
|
|
|
|
fun tl (l) {
|
|
case l of
|
|
_ : t -> t
|
|
esac
|
|
}
|
|
|
|
printf ("%s\n", {1, 2, 3}.hd.string);
|
|
printf ("%s\n", {1, 2, 3, 4}.tl.string);
|
|
printf ("%s\n", {1, {2, 3, 4}, 5, 6}.tl.hd.hd.string) |