18 lines
220 B
Plaintext
18 lines
220 B
Plaintext
|
;;; std.fnl --- A small standard library
|
||
|
|
||
|
;;; Commentary:
|
||
|
;; Porting a few functions that I'm used to from other Lisps.
|
||
|
|
||
|
;;; Code:
|
||
|
|
||
|
(var std {})
|
||
|
|
||
|
;;;
|
||
|
;; Functions
|
||
|
|
||
|
(fn std.zero? [n]
|
||
|
(= 0 n))
|
||
|
|
||
|
std
|
||
|
;;; std.fnl ends here
|