public
Description: supposed to be an interesting lisp-like language that (1) feels like javascript (2) can auto-parallelize serial procedures. It may never get completed.
Homepage:
Clone URL: git://github.com/jaekwon/Paralang.git
name age message
file README Loading commit data...
file _outline.py
file data.py
file interpret.py
file para.py
file parse.py
file test.py
file test2.py
README
0. code == data
1. everything is an ordered dict, but with revision control
2. functions are also ordered dicts where each key/value pair is an assignment to a variable
3. symbols are used to refer to objects much like the javascript prototype system. (closures)
4. the above properties make it possible to execute sequential programs out of order (not to be confused with reordering 
the procedure itself) or in parallel, making it (barring performance) interesting for parallel computing studies.