Implement these language features:
integers (positive and negative)
print expressions at the top level
terminating semicolons
line & multiline comments
skip whitespace
Example:
#lang scriptish -1; // line comment 10 ; /* multi // line comment */ 2;
Result:
-1 10 2
What could we put inside a line comment that would provoke a lexing error? How might we fix this?