mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-29 01:14:40 +00:00
36 lines
355 B
Odin
36 lines
355 B
Odin
/*#import "fmt.odin"
|
|
|
|
thing :: proc() {
|
|
fmt.println("Hello1!")
|
|
}*/
|
|
|
|
|
|
#import "fmt.odin";
|
|
|
|
main :: proc() {
|
|
fmt.println("hello, world!");
|
|
}
|
|
|
|
|
|
/*#import "fmt.odin" as .
|
|
|
|
thing :: proc() {
|
|
println("Hello3!")
|
|
}
|
|
|
|
|
|
*/
|
|
/*#import "fmt.odin" as _
|
|
|
|
thing :: proc() {
|
|
// println("Hello4!")
|
|
}
|
|
*/
|
|
|
|
/*
|
|
#include "fmt.odin"
|
|
|
|
thing :: proc() {
|
|
println("Hello5!")
|
|
}*/
|