mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-19 04:12:22 -07:00
20 lines
247 B
Odin
20 lines
247 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";
|
|
)
|
|
|
|
proc main() {
|
|
fmt.println("Hellope!");
|
|
}
|