0.1.2 • Published 5 years ago

vau v0.1.2

Weekly downloads
2
License
GPL-3.0
Repository
github
Last release
5 years ago

vau

A lisp dialect written in TypeScript.

Pronounced like 'vow'.

demo

(def name "Pete Mondelo")
(def greet 
    (lambda
        (name)
        (print "Hello" name)))

(greet name)
;; Output => Hello Pete Mondelo

building

$ yarn install
yarn install v1.12.3
[1/4] Resolving packages...
success Already up-to-date.
Done in 0.08s.

$ yarn start
yarn run v1.12.3
$ tsc; node index.js
 ERR  No file specified
      Usage:
      vau [file.vau]
Done in 2.07s.

$ node index.js hello.vau