tipitypy/stat.go

18 lines
196 B
Go
Raw Permalink Normal View History

2025-02-15 18:06:22 +01:00
package main
type Stat struct {
Skipped uint
Correct uint
False uint
Words uint
}
var globalStat Stat
func (s *Stat) Reset() {
s.Skipped = 0
s.Correct = 0
s.False = 0
s.Words = 0
}