fennel-ls/test/test-project/baz.fnl
2022-08-01 13:09:05 -05:00

12 lines
198 B
Fennel

(fn bazfn []
(print "you called bazfn"))
(fn unused []
(print "this function is unused"))
(fn unused2 []
(print "this function is unused, but also exported. Tricky!"))
{: bazfn : unused2}