@ -96,6 +96,14 @@ func AskFor(question string) (string, error) {
}
func OptDo(err error, f func() error) error {
if err == nil {
return f()
} else {
return err
func IntMin(x, y int) int {
if x < y {
return x
The note is not visible to the blocked user.