9 lines
81 B
Odin
9 lines
81 B
Odin
package main
|
|
|
|
import "core:fmt"
|
|
|
|
main :: proc() {
|
|
fmt.println("hello world")
|
|
}
|
|
|