mirror of
https://github.com/Ajetski/dotfiles.git
synced 2025-09-30 07:33:19 -09:00
11 lines
125 B
Fennel
11 lines
125 B
Fennel
(module fnl-config
|
|
{require {a aniseed.core}})
|
|
|
|
(defn hi
|
|
[]
|
|
(a.println "Hello, World!"))
|
|
|
|
(defn add
|
|
[a b]
|
|
(+ a b))
|