mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-12 06:11:26 -07:00
Fix assert; exporting rules
This commit is contained in:
+23
-25
@@ -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!")
|
||||
}*/
|
||||
|
||||
|
||||
Reference in New Issue
Block a user