mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 09:40:21 +00:00
24 lines
165 B
Raku
24 lines
165 B
Raku
|
|
|
|
struct B {
|
|
d : int
|
|
}
|
|
struct A {
|
|
b : &B;
|
|
c : int;
|
|
d : int;
|
|
e : int;
|
|
}
|
|
|
|
|
|
terra foo() : A
|
|
return A {nil}
|
|
end
|
|
|
|
foo:disas()
|
|
|
|
print(foo())
|
|
|
|
|
|
|
|
terralib.dumpmodule() |