Files
Odin/examples/hello.odin
2017-09-29 21:11:16 +01:00

6 lines
77 B
Odin

import "core:fmt.odin";
main :: proc() {
fmt.println("Hellope, world!");
}