Add takes two numbers and returns the result of adding them together.
(a, b float64)
| 5 | // Add takes two numbers and returns the |
| 6 | // result of adding them together. |
| 7 | func Add(a, b float64) float64 { |
| 8 | return a + b |
| 9 | } |
| 10 | |
| 11 | // Subtract takes two numbers a and b, and |
| 12 | // returns the result of subtracting b from a. |
nothing calls this directly
no outgoing calls
no test coverage detected