exercism/go/election-day/election_result.go
2022-08-24 14:28:45 +02:00

10 lines
188 B
Go

package electionday
// ElectionResult represents an election result
type ElectionResult struct {
// Name of the candidate
Name string
// Number of votes the candidate had
Votes int
}