wyvernlang / wyvern

The Wyvern programming language.

Home Page:http://wyvernlang.github.io/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Script with only imports should compile and run

craigthelinguist opened this issue · comments

Take the following example:

// firstModule.wyv
import secondModule
// secondModule.wyv
5

At the moment, running firstModule produces ToolError: Parse Error: Encountered "<EOF>" at line 0, column 0. but it should perform the import and return unit.

(There's some additional discussion about this on #107)