Help for this page

Select Code to Download


  1. or download this
    for (0..3) {
      print "....\b\b\b\b";
      sleep 1;
    }
    
  2. or download this
    print "....\b\b\b\b" and sleep 1 for (0..3);
    
  3. or download this
    for (0..3) {
      print "." and sleep 1 for (0..3);
      print "\b\b\b\b" and sleep 1;
    }