Fix assert; exporting rules

This commit is contained in:
Ginger Bill
2016-09-22 23:18:29 +01:00
parent 2e506b7e6e
commit ee0aa7b9de
5 changed files with 45 additions and 49 deletions
+23 -25
View File
@@ -1,38 +1,36 @@
#import "fmt.odin"
/*#import "fmt.odin"
thing :: proc() {
fmt.println("Hello!")
fmt.println("Hello1!")
}*/
#import "fmt.odin" as format
thing :: proc() {
format.println("Hello2!")
}
/*
#import "fmt.odin" as fmt
/*#import "fmt.odin" as .
thing :: proc() {
fmt.println("Hello!")
println("Hello3!")
}
*/
/*#import "fmt.odin" as _
thing :: proc() {
// println("Hello4!")
}
*/
/*
#import "fmt.odin" as .
thing :: proc() {
println("Hello!")
}
*/
/*
#import "fmt.odin" as _
thing :: proc() {
// println("Hello!")
}
*/
/*
#load "fmt.odin"
thing :: proc() {
println("Hello!")
}
*/
println("Hello5!")
}*/