mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 09:40:21 +00:00
11 lines
140 B
Perl
11 lines
140 B
Perl
|
|
terra foo3(a : &int) : &int
|
|
return a
|
|
end
|
|
|
|
terra bar2(a : int)
|
|
return @(foo3(&a))
|
|
end
|
|
|
|
local test = require("test")
|
|
test.eq(bar2(42),42) |