updated the test

This commit is contained in:
Araq
2014-10-31 21:13:02 +01:00
parent 860a28802e
commit 590461d88a
3 changed files with 16 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
import mexport2b
export mexport2b
proc printAbc*() = echo "abc"

View File

@@ -0,0 +1 @@
proc printXyz*() = echo "xyz"

View File

@@ -0,0 +1,10 @@
# bug #1595
import mexport2a
proc main() =
echo "Import Test, two lines should follow. One with abc and one with xyz."
printAbc()
printXyz()
main()