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
- Host: GitHub
- URL: https://github.com/programmer-ke/super-tiny-compiler-py-edition
- Owner: programmer-ke
- Created: 2016-11-30T10:45:15.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-23T09:43:48.000Z (about 9 years ago)
- Last Synced: 2025-02-22T22:42:34.648Z (over 1 year ago)
- Language: Python
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
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)