mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 09:40:21 +00:00
8 lines
165 B
Perl
8 lines
165 B
Perl
|
|
|
|
C = terralib.includecstring [[
|
|
typedef struct { int x; int y; } Point;
|
|
Point mkpoint() { Point p; p.x = p.y = 3; return p; }
|
|
]]
|
|
|
|
assert(C.mkpoint().x == 3) |