14 lines
115 B
Go
14 lines
115 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
const (
|
|
Version = "1.3"
|
|
)
|
|
|
|
func printVersion() {
|
|
fmt.Println("gost", Version)
|
|
}
|