Files
Odin/code/test.odin
2016-09-21 23:26:31 +01:00

39 lines
350 B
Odin

#import "fmt.odin"
thing :: proc() {
fmt.println("Hello!")
}
/*
#import "fmt.odin" as fmt
thing :: proc() {
fmt.println("Hello!")
}
*/
/*
#import "fmt.odin" as .
thing :: proc() {
println("Hello!")
}
*/
/*
#import "fmt.odin" as _
thing :: proc() {
// println("Hello!")
}
*/
/*
#load "fmt.odin"
thing :: proc() {
println("Hello!")
}
*/