$nice = 0; sub hello1 { return "Get Lost!" unless $nice or return "Hi" } sub hello2 { return "Get Lost!" if not $nice or return "Hi" } print hello1, hello2