mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-30 09:54:45 +00:00
27 lines
313 B
Odin
27 lines
313 B
Odin
import (
|
|
"fmt.odin";
|
|
"hash.odin";
|
|
"atomics.odin";
|
|
"bits.odin";
|
|
"math.odin";
|
|
"mem.odin";
|
|
"opengl.odin";
|
|
"strconv.odin";
|
|
"strings.odin";
|
|
"sync.odin";
|
|
"types.odin";
|
|
"utf8.odin";
|
|
"utf16.odin";
|
|
)
|
|
|
|
const (
|
|
X = 123;
|
|
Y = 432;
|
|
)
|
|
|
|
proc main() {
|
|
proc(s: string){
|
|
fmt.println(s, "world!");
|
|
}("Hellope");
|
|
}
|