aboutsummaryrefslogtreecommitdiff
path: root/examples/basic.odin
diff options
context:
space:
mode:
authorGinger Bill <bill@gingerbill.org>2016-09-02 14:14:12 +0100
committerGinger Bill <bill@gingerbill.org>2016-09-02 14:14:12 +0100
commit25e9b9bc87a5b4fa14fc7d47ca3077849ee5648d (patch)
tree115e165013c52edd77777f9bd64e212e0b29f7c8 /examples/basic.odin
parentfa09d805e23c59cb881573a7a1aee5fbc5752ea2 (diff)
min, max, abs
Diffstat (limited to 'examples/basic.odin')
-rw-r--r--examples/basic.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/basic.odin b/examples/basic.odin
index 96282ccd8..26c522d4c 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(FileStandard.OUTPUT), s as []byte)
+ file_write(file_get_standard(File_Standard.OUTPUT), s as []byte)
}
byte_reverse :: proc(b: []byte) {