learning_go/calculator/calculator.go
2024-06-19 09:11:01 +03:00

6 lines
196 B
Go

// 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
}