tipitypy/stat.go
2025-02-15 19:21:41 +02:00

11 lines
112 B
Go

package main
type Stat struct {
Skipped uint
Correct uint
False uint
Words uint
}
var globalStat Stat