Files
linguist/samples/Terra/mathlib.t
2016-01-28 11:22:27 +07:00

9 lines
157 B
Perl

local c = terralib.includec("math.h")
terra mysqrt(a : float)
return c.sqrtf(a)
end
local test = require("test")
test.eq(mysqrt(4),2)
test.eq(mysqrt(9),3)