9 lines
156 B
Go
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")
|
|
}
|