-
-
Save WPDC/b2b18a249f0c1cdd44aa to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if ( weatherIsSunny && ! weatherIsRaining && ! isWorking ) { | |
printf( "Going to the festival" ); | |
} else if ( movieIsPlaying ) { | |
printf( "Going to the movies" ); | |
} else { | |
printf( "Staying home" ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment