fork download
  1. package main
  2.  
  3. import (
  4. "fmt"
  5. "runtime"
  6. )
  7.  
  8. func main() {
  9. //fmt.Printf("%v is old. Please update.\n", runtime.Version())
  10. fmt.Printf("%v is not old. Never mind.\n", runtime.Version())
  11. }
Success #stdin #stdout 0s 789504KB
stdin
Standard input is empty
stdout
go1.4 is not old. Never mind.