Initial Commit

Original Git Repo "went bad" so I had to restart.
This commit is contained in:
gingerBill
2016-07-07 21:47:33 +01:00
commit 7430008fd7
20 changed files with 17332 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
type float: f32;
main :: proc() {
thing :: proc(n: int) -> int, f32 {
return n*n, 13.37;
}
_, _ := 1, 2;
}