Files
3/set_alarm.v
2025-02-17 02:18:41 +05:30

11 lines
229 B
V

fn set_alarm(employed bool, vacation bool) bool {
return employed && !vacation
}
fn main() {
println(set_alarm(true, false))
println(set_alarm(true, true))
println(set_alarm(false, false))
println(set_alarm(false, true))
}