9mm/lib/head.fnl
2024-05-28 15:04:00 -06:00

7 lines
123 B
Fennel

; return the first item in a table
(fn head [t] (if (> (length t) 0)
(?. t 1)
[]))
{: head}