mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 09:40:21 +00:00
12 lines
117 B
Perl
12 lines
117 B
Perl
C = terralib.includecstring [[
|
|
int foobar() {
|
|
return 3;
|
|
}
|
|
]]
|
|
|
|
|
|
terra doit()
|
|
return C.foobar()
|
|
end
|
|
|
|
print(doit()) |