1
0
forked from Mirror/wren

Ignore newlines in imports.

This commit is contained in:
Bob Nystrom
2015-12-07 19:41:10 -08:00
parent 6ff5fb9ff2
commit bfa86b259a
3 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,5 @@
// nontest
System.print("ran module")
var A = "a"
var B = "b"

View File

@ -0,0 +1,15 @@
import
"module"
import "module" for
A,
B
// expect: ran module
System.print(A) // expect: a
System.print(B) // expect: b