mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 01:30:22 +00:00
10 lines
148 B
Perl
10 lines
148 B
Perl
|
|
local a = "+"
|
|
local b = "__sub"
|
|
local ops = {4,5}
|
|
terra foobar()
|
|
return operator(b,operator(a,3,operator("+",ops)))
|
|
end
|
|
|
|
assert(foobar() == -12)
|