mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 01:30:22 +00:00
12 lines
159 B
Perl
12 lines
159 B
Perl
terra bar(a : int) : int
|
|
return a + 1
|
|
end
|
|
terra foo(a : int) : int
|
|
|
|
return a
|
|
end
|
|
|
|
local test = require("test")
|
|
test.eq(foo(2),2)
|
|
test.eq(bar(2),3)
|