1
1
Fork 0
mirror of https://github.com/azur1s/bobbylisp.git synced 2024-09-28 09:27:35 +00:00
bobbylisp/example/math.blsp

3 lines
71 B
Plaintext
Raw Normal View History

2022-01-28 00:33:58 +00:00
(fun cool_number (/ (+ 345 345) 10))
2022-01-28 00:07:38 +00:00
(fun main
2022-01-28 00:33:58 +00:00
(print cool_number))