mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-22 15:37:51 +00:00
25 lines
282 B
Odin
25 lines
282 B
Odin
import (
|
|
"atomic.odin";
|
|
"fmt.odin";
|
|
"hash.odin";
|
|
"math.odin";
|
|
"mem.odin";
|
|
"opengl.odin";
|
|
"os.odin";
|
|
"sync.odin";
|
|
"utf8.odin";
|
|
)
|
|
|
|
proc main() {
|
|
var x = proc() -> int {
|
|
proc print_here() {
|
|
fmt.println("Here");
|
|
}
|
|
|
|
print_here();
|
|
return 1;
|
|
};
|
|
fmt.println(x());
|
|
}
|
|
|