forked from Mirror/wren
There's a lot of changes here and surely some rough edges to iron out. Also, I need to update the docs. But I want to get closer to landing this so I can build on it.
7 lines
171 B
Plaintext
7 lines
171 B
Plaintext
// Import a module from within a named package.
|
|
import "foo/within_foo" for Foo
|
|
// expect: ran foo module
|
|
// expect: ran bar module
|
|
|
|
System.print(Foo) // expect: from foo
|