fork download
  1. var number = 8
  2.  
  3. if (number > 5) {
  4. print("$number is greater than 5")
  5.  
  6. if(number ==8){
  7. print("$thats my lucky number!!!!!!")
  8.  
  9. }
  10. } else {
  11. print("$number is not greater than 5")
  12. }
Success #stdin #stdout 4s 166480KB
stdin
1
2
88
42
10
stdout
$number is greater than 5
$thats my lucky number!!!!!!