mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-13 09:22:22 -07:00
39 lines
350 B
Odin
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!")
|
|
}
|
|
*/
|