Change precedence order for types e.g. ^T(x) == ^(T(x))

This commit is contained in:
Ginger Bill
2017-07-13 16:20:07 +01:00
parent 03570275c1
commit b8697fb4ed
19 changed files with 1683 additions and 1442 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ import_load (
)
write_string :: proc(fd: Handle, str: string) -> (int, Errno) {
return write(fd, []u8(str));
return write(fd, cast([]u8)str);
}
read_entire_file :: proc(name: string) -> ([]u8, bool) {