mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 09:40:21 +00:00
11 lines
139 B
Perl
11 lines
139 B
Perl
|
|
struct A { a : int, b : int }
|
|
|
|
local c = "b"
|
|
terra foo()
|
|
var a = A {1,2}
|
|
return a.[c]
|
|
end
|
|
|
|
local test = require("test")
|
|
test.eq(foo(),2) |