mirror of
https://github.com/sbrow/envr.git
synced 2026-06-27 10:38:33 -04:00
11 lines
136 B
Odin
11 lines
136 B
Odin
package main
|
|
|
|
import "core:fmt"
|
|
|
|
VERSION :: #load("version.txt", string)
|
|
|
|
cmd_version :: proc(cmd: ^Command) {
|
|
fmt.println(VERSION)
|
|
}
|
|
|