phone home

This commit is contained in:
Adorable-Catgirl 2018-12-11 15:09:06 -05:00 committed by GitHub
parent 918ea161ed
commit 4c8b8ad4c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

15
e.t Normal file
View File

@ -0,0 +1,15 @@
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)