pebblisp/src/examples/pebblisp.pbl

37 lines
689 B
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

(def black "")
(def red "")
(def green "")
(def yellow "")
(def blue "")
(def purple "")
(def cyan "")
(def white "")
(def bold "")
(def reset "")
(def nl (ch 10))
(def conf (cat (env "HOME") "/.pebblisp.pbl"))
(def reload (fn () (loadfile conf)))
(def hour (fn (ti) (
(def h (% ti.hour 12))
(if (= 0 h) 12 h)
)))
(def pwd (fn () (env "PWD")))
(def zero (fn (num) (cat (if (< num 10) "0" "") num)))
(def clock (fn (ti) (cat (hour ti) ":" (zero ti.minute) ":" (zero ti.sec))))
(def prompt (fn (a) (
(def ti (time))
(cat nl
bold red "[sage] " blue (clock) " " reset cyan (pwd) nl
bold green "pebblisp ~> " reset)
)))