11 lines
135 B
Odin
11 lines
135 B
Odin
package main
|
|
|
|
import "core:fmt"
|
|
|
|
VERSION :: #config(VERSION, "dev")
|
|
|
|
main :: proc() {
|
|
fmt.println("Hellope!")
|
|
fmt.println(VERSION)
|
|
}
|