package main

import (
    "fmt"
    "runtime"
)

func main() {
    //fmt.Printf("%v is old. Please update.\n", runtime.Version())  
    fmt.Printf("%v is not old. Never mind.\n", runtime.Version())
}