phpython Code
a python interpreter written in php
Status: Pre-Alpha
Brought to you by:
francescobianco
--- a/trunk/python/python.lime +++ b/trunk/python/python.lime @@ -12,13 +12,21 @@ | small_stmt NEWLINE . -small_stmt = cmd_stmt . +small_stmt = cmd_stmt + | assign_stmt + . compound_stmt = for_stmt . cmd_stmt = NAME DSTRING {python_command($1,$2);} . +assign_stmt = varlist EQUAL exprlist . + for_stmt = FOR exprlist IN testlist COLON { python_for(); } suite { python_end_for(); } . + +suite = simple_stmt + | NEWLINE INDENT stmt DEDENT + . exprlist = NAME .