diff --git a/fine/tests/modules/foo.fine b/fine/tests/modules/foo.fine new file mode 100644 index 00000000..c7193c90 --- /dev/null +++ b/fine/tests/modules/foo.fine @@ -0,0 +1,3 @@ +export fun hello() -> string { + "hello" +} \ No newline at end of file diff --git a/fine/tests/modules/import.fine b/fine/tests/modules/import.fine new file mode 100644 index 00000000..94698309 --- /dev/null +++ b/fine/tests/modules/import.fine @@ -0,0 +1,8 @@ +import "./foo" as foo; + +fun test() -> string { + foo.hello() + " world" +} + +// @ignore WIP +// @no-errors