blob: 0a2511cbd6378cc297fe8c9bbafb4ce2756e2cb3 (
plain)
1
2
3
4
5
6
7
8
9
10
|
package internal
import "fmt"
const versionStr = "v0.0.3"
func printVersion() {
fmt.Printf("This is Gos version %s; (C) by Paul Buetow\n", versionStr)
fmt.Println("https://codeberg.org/snonux/gos")
}
|