Integer Enumerations

This commit is contained in:
gingerBill
2016-08-22 15:43:13 +01:00
parent a98e93f03f
commit 81c592b5e9
10 changed files with 280 additions and 60 deletions
+1 -1
View File
@@ -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) {