Fix enum type comparison; Start demo 003 code

This commit is contained in:
Ginger Bill
2016-09-21 23:26:31 +01:00
parent 33bd3f635f
commit 664c2cd7a5
11 changed files with 361 additions and 48 deletions
+34 -1
View File
@@ -1,5 +1,38 @@
#import "fmt.odin"
thing :: proc() #link_name "frankerooney" {
thing :: proc() {
fmt.println("Hello!")
}
/*
#import "fmt.odin" as fmt
thing :: proc() {
fmt.println("Hello!")
}
*/
/*
#import "fmt.odin" as .
thing :: proc() {
println("Hello!")
}
*/
/*
#import "fmt.odin" as _
thing :: proc() {
// println("Hello!")
}
*/
/*
#load "fmt.odin"
thing :: proc() {
println("Hello!")
}
*/