diff options
| author | Ginger Bill <bill@gingerbill.org> | 2016-09-21 23:26:31 +0100 |
|---|---|---|
| committer | Ginger Bill <bill@gingerbill.org> | 2016-09-21 23:26:31 +0100 |
| commit | 664c2cd7a587feb18f02378506bdade2503343d3 (patch) | |
| tree | 2c0b5e972eaa2cc74ec67c377a9bd8f6e284b24e /code/test.odin | |
| parent | 33bd3f635f9d98636ab4631fac9cff4e9d7fdb4d (diff) | |
Fix enum type comparison; Start demo 003 code
Diffstat (limited to 'code/test.odin')
| -rw-r--r-- | code/test.odin | 35 |
1 files changed, 34 insertions, 1 deletions
diff --git a/code/test.odin b/code/test.odin index b99a832c1..48f992ffa 100644 --- a/code/test.odin +++ b/code/test.odin @@ -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!") +} +*/ |