Begin LLVM C API integration

This commit is contained in:
gingerBill
2020-02-01 22:50:57 +00:00
parent 0f399a7294
commit 6ed6a91a64
45 changed files with 10683 additions and 2 deletions
+11
View File
@@ -0,0 +1,11 @@
package demo
import "core:os"
main :: proc() {
x := 1;
y := 2;
z := x + y;
w := z - 2;
// os.write_string(os.stdout, "Hellope\n");
}