#!/bin/env php lex(); $parser = new Parser($tokens); $nodes = $parser->parse(); #$parser->printTree(); $compiler = new Interpreter($nodes); $compiler->compile([array_slice($argv, 1)]);