basic-computer-games/pizza/go/main.go
Michael d7c065b3f6 moved pizza to go folder
Signed-off-by: Michael <michael.lindman@gmail.com>
2022-02-16 17:52:09 +00:00

24 lines
487 B
Go

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++ {
}
}