Files
Odin/code/test.odin
2016-09-23 14:59:58 +01:00

36 lines
358 B
Odin

/*#import "fmt.odin"
thing :: proc() {
fmt.println("Hello1!")
}*/
#import "fmt.odin" as format
thing :: proc() {
format.println("Hello2!")
}
/*#import "fmt.odin" as .
thing :: proc() {
println("Hello3!")
}
*/
/*#import "fmt.odin" as _
thing :: proc() {
// println("Hello4!")
}
*/
/*
#load "fmt.odin"
thing :: proc() {
println("Hello5!")
}*/