phpython Code
a python interpreter written in php
Status: Pre-Alpha
Brought to you by:
francescobianco
--- a/trunk/python/python-tokenizer.php +++ b/trunk/python/python-tokenizer.php @@ -128,8 +128,8 @@ $d = strlen($regs[0]) - $indent; switch($d) { case 0: break; - case +1: $tokens[] = token("INDENT"); break; - case -1: $tokens[] = token("DEDENT"); break; + case +1: $tokens[] = token("INDENT"); $indent++; break; + case -1: $tokens[] = token("DEDENT"); $indent--; break; default: die("Expectend indented block"); }