mirror of
https://github.com/anoma/juvix.git
synced 2024-12-15 01:52:11 +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;
|