converts LISP style to C style expressions
In
(add 1 (subtract 3 2))
Out
add(1, subtract(3, 2))
git clone https://github.com/deniskyashif/tiny-compiler.git
cd tiny-compiler/src
npm install -g typescript ts-node
ts-node main
inspired by thejameskyle/the-super-tiny-compiler