11 lines
128 B
Plaintext
11 lines
128 B
Plaintext
|
|
package test:test;
|
||
|
|
|
||
|
|
interface test {
|
||
|
|
foo: func(v: s32) -> s32;
|
||
|
|
}
|
||
|
|
|
||
|
|
world dlopen-lib-foo {
|
||
|
|
import test;
|
||
|
|
export test;
|
||
|
|
}
|