Bank struct just contains current balance
| 1018 | |
| 1019 | // Bank struct just contains current balance |
| 1020 | pub struct Bank { |
| 1021 | balance: f32 |
| 1022 | } |
| 1023 | |
| 1024 | // Allows for withdrawing money |
| 1025 | // Pass a mutable reference so bank can be used elsewhere |
nothing calls this directly
no outgoing calls
no test coverage detected