fork download
  1. #!/usr/bin/perl
  2. for($i=0;$i<10;$i++)
  3. {
  4. if($i==3||$i==4)
  5. {
  6. next;
  7. }
  8. elseif($i==7){
  9. last;}
  10. else{
  11. print "$i\n";
  12. }
  13. }
Runtime error #stdin #stdout 0s 4596KB
stdin
Standard input is empty
stdout
Standard output is empty