1
0
Fork 0
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
246 B
Perl

terralib.nativetarget = terralib.newtarget {
Triple = "x86_64-pc-linux-gnu",
CPU = "x86-64",
}
stdio = terralib.includec("stdio.h")
terra main(argc : int, argv : &rawstring)
while true do
stdio.printf("e")
end
return 0
end
main(0, nil)