An open API service indexing awesome lists of open source software.

https://github.com/programmer-ke/super-tiny-compiler-py-edition


https://github.com/programmer-ke/super-tiny-compiler-py-edition

Last synced: 11 months ago
JSON representation

Awesome Lists containing this project

README

          

The Super Tiny Compiler Python Edition

Compiles Lisp style functions to C-style functions

e.g.

(add 2 3) -> add(2, 3)
(subtract 5 1) -> subtract(5, 1)
(add (subtract 5 1) 2) -> add(subtract(5, 1), 2)