SeattleTestbed / repy_v1

Seattle Testbed's original Repy version 1 sandbox
MIT License
1 stars 4 forks source link

import statement fails if # comment is used on the same line #121

Closed choksi81 closed 10 years ago

choksi81 commented 10 years ago

If you add a # comment to the back of a include statement in a mix file, the repy preprocessor program does not complain, but then does not run the program.

example: include struct.repy works

but:

include struct.repy # insightful comment about this include

causes the repy program to not run just printing a "Terminated" message.

I expect the program should still work after doing this, or at least throw some sort of preprocecssing error.

choksi81 commented 10 years ago

Author: justinc Fixed in r4505. Comments can be included at the end of "include" lines.