get-programming-with-go/mars.go
2018-10-30 08:11:47 -04:00

9 lines
156 B
Go

package main
import (
"fmt"
)
func main() {
fmt.Println("My weight on the surface of Mars is", 155, "lbs, and I would be", 24 * 365/687, "years old")
}