mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 09:40:21 +00:00
16 lines
181 B
Raku
16 lines
181 B
Raku
|
|
|
|
local S = terralib.types.newstruct("mystruct")
|
|
|
|
struct A {
|
|
v : int
|
|
}
|
|
|
|
S.entries:insert( { type = A, field = "what" } )
|
|
terra foo()
|
|
var v : S
|
|
return v.what.v
|
|
end
|
|
|
|
foo:compile()
|