This commit is contained in:
2024-10-20 21:07:51 +00:00
parent ac623d6d49
commit ed60288a2a
8 changed files with 82 additions and 32 deletions

11
bank/communication.go Normal file
View File

@@ -0,0 +1,11 @@
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")
}