gocollatz/parsing/interface.go

8 lines
89 B
Go
Raw Permalink Normal View History

2024-04-24 20:04:34 +00:00
package parsing
import "math/big"
type Parser interface {
Parse() (*big.Int, error)
}