0.1.0 • Published 13 years ago
she v0.1.0
Guil: command line to add brackets for Guile.
Install this by running npm install -g guil
A file test.guil like this:
define (f x y)
+ x y
display (f 2 3)
display
"fucking brackets"
; commentRun guil test.guil
It will be converted to test.scm:
(define (f x y)
(+ x y))
(display (f 2 3))
(display
"fucking brackets")Multiple files are supported. guil just compiles.