diff options
| author | gingerBill <ginger.bill.22@gmail.com> | 2016-08-22 15:43:13 +0100 |
|---|---|---|
| committer | gingerBill <ginger.bill.22@gmail.com> | 2016-08-22 15:43:13 +0100 |
| commit | 81c592b5e92411e4b64744a152bd445bb6154433 (patch) | |
| tree | 1034a7abdff999d72561aa29b8a90ecb3fb19c76 /examples/basic.odin | |
| parent | a98e93f03f7bd62ebf589b473c61ab5daf37f02c (diff) | |
Integer Enumerations
Diffstat (limited to 'examples/basic.odin')
| -rw-r--r-- | examples/basic.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/basic.odin b/examples/basic.odin index 2341d7f80..401754c57 100644 --- a/examples/basic.odin +++ b/examples/basic.odin @@ -3,7 +3,7 @@ #load "file.odin" print_string :: proc(s: string) { - file_write(file_get_standard(FILE_STANDARD_OUTPUT), ^s[0], len(s)); + file_write(file_get_standard(FileStandard.OUTPUT), ^s[0], len(s)); } byte_reverse :: proc(b: []byte) { |