awesome/lib/std.fnl

18 lines
220 B
Fennel

;;; 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