mirror of
https://github.com/odin-lang/Odin.git
synced 2026-01-01 02:42:09 +00: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!")
|
|
}
|
|
*/
|