]> gerrit.simantics Code Review - simantics/platform.git/blob - ModuleExport.scl
afc15c72fd254a894c4a1798da3ffb60e1f24f4f
[simantics/platform.git] / ModuleExport.scl
1 // module FooBar
2 module {
3     export = [foo]
4 }
5 foo = "foo"
6 bar = "bar"
7 --
8 import "FooBar"
9 main = foo
10 --
11 foo
12 --
13 import "FooBar"
14 main = bar
15 --
16 2:8-2:11: Couldn't resolve bar.