A simple command-line banking application built in Rust while learning from The Rust Programming Language book.
- Deposit money
- Withdraw money
- View transaction history
- Check current balance
- Prevent withdrawals when funds are insufficient
- Menu-driven interface
===== BANK =====
Current Balance: $1000
1. Deposit
2. Withdraw
3. View Transaction History
4. Exit
- PIN authentication
- Better input validation
- Multiple accounts
- Transaction timestamps
- Data persistence
This release currently provides a Linux x86_64 executable.
Run on Linux
-
chmod +x bank-system
-
./bank-system
-
it might open as binary on your ide but just write the commands in the terminal
cargo run
Built by Tyler as a Rust learning project.