<?php | |
if ( $weatherIsSunny && ! $weatherIsRaining && ! $isWorking ) { | |
echo 'Going to the festival'; | |
} else if ( $movieIsPlaying ) { | |
echo 'Going to the movies'; | |
} else { | |
echo 'Staying home'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment