mirror of
https://github.com/unknwon/the-way-to-go_ZH_CN.git
synced 2025-08-12 01:08:53 +08:00
13 lines
129 B
Go
13 lines
129 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"runtime"
|
|
)
|
|
|
|
func main() {
|
|
fmt.Printf("%s", runtime.Version())
|
|
}
|
|
// Output:
|
|
// go1.0.3 or go 1.1
|