The backend for the project formerly known as signet, now known as beignet.
25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- package main
-
- import "github.com/imosed/signet/data"
-
- func SumContributions(contributions []data.Contribution) (sum float64) {
- total := 0.0
- for _, contribution := range contributions {
- total += contribution.Amount
- }
- return total
- }
|