scripts whitespace

This commit is contained in:
rxi 2019-04-10 19:39:21 +01:00
parent 0f074a9fef
commit fbefceb1ca
2 changed files with 0 additions and 4 deletions

View File

@ -1,4 +1,3 @@
(= fib (fn (n)
(if (<= 2 n)
(+ (fib (- n 1)) (fib (- n 2)))
@ -7,4 +6,3 @@
))
(print (fib 28))

View File

@ -1,5 +1,3 @@
(= push (mac (val lst)
(list '= lst (list 'cons val lst))
))