Declaration grouping uses braces rather than parentheses

This commit is contained in:
Ginger Bill
2017-06-13 15:04:23 +01:00
parent 6b464e3558
commit 6a88dc322a
27 changed files with 184 additions and 200 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
import_load (
import_load {
"os_windows.odin" when ODIN_OS == "windows";
"os_x.odin" when ODIN_OS == "osx";
"os_linux.odin" when ODIN_OS == "linux";
)
}
proc write_string(fd: Handle, str: string) -> (int, Errno) {
return write(fd, []u8(str));