DEV Community

Discussion on: Daily Challenge #75 - Set Alarm

Collapse
 
pmkroeker profile image
Peter

In go:

func setAlarm(e, v bool) bool {
    return e && !v
}

Go Playground example