33 | | In the `main` method, the `Farm` will print the names of both animals and their masses. |
34 | | * Ex. `Spot is a Dog with a mass of 15.4.` |
35 | | Then, `Cloud` will `eat` `0.2`, `move` `0.8`, and `speak`. |
36 | | `Spot` will then `eat` `0.4`, `move` `0.6`, and `speak`. |
37 | | `Farm` will print the names of both animals and their masses once again. |
| 33 | In the `main` method, the `Farm` will: |
| 34 | * print the names of both animals and their masses. |
| 35 | 1. Ex. `Spot is a Dog with a mass of 15.4.` |
| 36 | * Then, `Cloud` will `eat` `0.2`, `move` `0.8`, and `speak`. |
| 37 | * `Spot` will then `eat` `0.4`, `move` `0.6`, and `speak`. |
| 38 | * `Farm` will print the names of both animals and their masses once again. |