fennel-ls/test/test-project/baz.fnl
2023-06-02 20:58:02 -05:00

11 lines
197 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}