Semicolons are required; when condition for certain file scope declarations; #import syntax change

This commit is contained in:
Ginger Bill
2016-12-01 22:44:00 +00:00
parent be8b9bda2f
commit 4bb45700a5
29 changed files with 3400 additions and 3244 deletions
+1 -1
View File
@@ -301,7 +301,7 @@ namespaces_and_files :: proc() {
#import "file.odin" as _
// Exporting import
#load "file.odin"
#include "file.odin"
*/
// Talk about scope rules and diagram
+3 -3
View File
@@ -1,7 +1,7 @@
// Demo 002
#load "basic.odin"
#load "math.odin"
// #load "game.odin"
#include "basic.odin"
#include "math.odin"
// #include "game.odin"
#thread_local tls_int: int
+1 -1
View File
@@ -1,4 +1,4 @@
#load "win32.odin"
#include "win32.odin"
assume :: proc(cond: bool) #foreign "llvm.assume"