diff options
| author | Paul Buetow <paul@buetow.org> | 2025-01-11 00:45:02 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2025-01-11 00:45:02 +0200 |
| commit | 94d9b5f48147ee9cc6ca57177e00f8679224603d (patch) | |
| tree | c3ae81b6c31c5deb0582fca475f156718a6dd380 /internal/version.go | |
| parent | 97b93252dfcb0242bb1cd5e3e5793a8ae73b17a9 (diff) | |
add gosc binary
Diffstat (limited to 'internal/version.go')
| -rw-r--r-- | internal/version.go | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/internal/version.go b/internal/version.go new file mode 100644 index 0000000..0a2511c --- /dev/null +++ b/internal/version.go @@ -0,0 +1,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") +} |
