hellope.odin 96 B

12345678910
  1. package main
  2. import "core:fmt"
  3. main :: proc(){
  4. // hello world
  5. fmt.println("Hellope!")
  6. }