mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-12 22:31:25 -07:00
Fix enum type comparison; Start demo 003 code
This commit is contained in:
+34
-1
@@ -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!")
|
||||
}
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user