awesome/lib/std.fnl

18 lines
220 B
Plaintext
Raw Normal View History

2019-01-15 11:20:10 +11:00
;;; 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