Prefix proc syntax

This commit is contained in:
Ginger Bill
2017-06-12 12:34:55 +01:00
parent 8fafdb185c
commit 33eeb58521
29 changed files with 956 additions and 873 deletions
+5 -2
View File
@@ -11,6 +11,9 @@
#import "utf8.odin";
#import "utf16.odin";
const main = proc() {
fmt.println("Hello");
proc main() {
var x = proc() {
fmt.println("Hello");
};
x();
}