Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- bool canPigsfly? = false;
- bool canBirdsswim? = false;
- bool canHumansswimandfly? = true;
- Console.WriteLine(canPigsfly?); //false
- Console.WriteLine(canBirdsswim?); //false
- Console.WriteLine(canHumansswimandfly?); //true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement