package main import ( "bufio" "fmt" "os" ) func main() { fmt.Println("Pizza") fmt.Println("Creative Computing Morristown, New Jersey") fmt.Println("Pizza Delivery Game:") scanner := bufio.NewScanner(os.Stdin) fmt.Printf("What is your first name:") scanner.Scan() fmt.Printf("Hi, %s. In this game you are to take orders for pizzas.\n", scanner.Text()) fmt.Println("Then you are to tell a Delivery boy where to deliver the ordered pizzas.") for i := 1; i < 16; i++ { } }