Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of Mohammed Asad

Mohammed Asad

Mohammed Asad has asked 4 questions and find answers to 2 problems.

Stats

50
EtPoint
6
Vote count
4
questions
2
answers

About

$boolRepeatLoop = true; $strMood = "Happy"; $intAge = 28;

while($boolRepeatLoop) {

if( $strMood == "Calm" ) doCoding();

elseif( $strMood == "Happy" ) watchAMovie();

elseif( $strMood == "Sad" ) writePoetry();

else keepEating();

if( $intAge > 50 ) $boolRepeatLoop = false; }