mirror of
https://github.com/anoma/juvix.git
synced 2024-12-14 08:27:03 +03:00
28 lines
316 B
Plaintext
28 lines
316 B
Plaintext
module Foreign;
|
|
|
|
foreign ghc {};
|
|
|
|
foreign ghc { import Foo.Bar };
|
|
|
|
foreign agda { import Foo.Bar };
|
|
|
|
foreign ghc { import Foo.Bar
|
|
import Foo.Baz };
|
|
|
|
foreign ghc {
|
|
import Foo.Bar
|
|
import Foo.Baz };
|
|
|
|
foreign ghc {
|
|
import Foo.Bar
|
|
import Foo.Baz
|
|
};
|
|
|
|
foreign ghc {
|
|
import Foo.Bar
|
|
|
|
import Foo.Baz
|
|
};
|
|
|
|
end;
|