From 4c8b8ad4c25bc53937eb59a87ea7b75f1cc520a6 Mon Sep 17 00:00:00 2001 From: Adorable-Catgirl Date: Tue, 11 Dec 2018 15:09:06 -0500 Subject: [PATCH] phone home --- e.t | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 e.t diff --git a/e.t b/e.t new file mode 100644 index 0000000..ac8f043 --- /dev/null +++ b/e.t @@ -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)