Files
Odin/examples/llvm-demo/demo.odin
T
2020-03-05 22:01:07 +00:00

8 lines
94 B
Odin

package demo
import "core:fmt"
main :: proc() {
fmt.println("Hellope!", 123, true, 1.3);
}