----- STRUCTS ----- A struct is a custom data type that stores multiple types of data
| 653 | // A struct is a custom data type that stores multiple |
| 654 | // types of data |
| 655 | struct Customer{ |
| 656 | name: String, |
| 657 | address: String, |
| 658 | balance: f32, |
| 659 | } |
| 660 | |
| 661 | // Create struct |
| 662 | let mut bob = Customer { |
nothing calls this directly
no outgoing calls
no test coverage detected