garden/go.fnl

8 lines
207 B
Plaintext
Raw Normal View History

2023-12-01 01:10:16 +00:00
(local fennel (require :fennel))
(import-macros {: terra : unterra : def : q} :terra)
(local N 5)
(print (unterra (def [x int] (return (+ x N)))))
(local inc (def [x int] (return (+ x N))))
(print (inc 5))