11 lines
217 B
Go
11 lines
217 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
func presentOptions() {
|
|
fmt.Println("What do you want to do?")
|
|
fmt.Println("1. Check balance")
|
|
fmt.Println("2. Deposit money")
|
|
fmt.Println("3. Withdraw money")
|
|
fmt.Println("4. Exit")
|
|
} |