11 lines
245 B
Go
Executable File
11 lines
245 B
Go
Executable File
// Package calculator does simple calculations.
|
|
package calculator // Add takes two numbers and returns the result of adding them together.
|
|
|
|
func Add(a, b float64) float64 {
|
|
return a + b
|
|
}
|
|
|
|
func Subtract(a, b float64) float64 {
|
|
return b - a
|
|
}
|