mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 09:40:21 +00:00
19 lines
142 B
Perl
19 lines
142 B
Perl
|
|
|
|
a = terralib.new(int[4])
|
|
|
|
terra foo()
|
|
a[3] = 4
|
|
end
|
|
|
|
foo()
|
|
assert(4 == a[3])
|
|
|
|
|
|
terra bar()
|
|
a = array(5,6,7,8)
|
|
end
|
|
|
|
bar()
|
|
assert(a[3] == 8)
|