Help for this page

Select Code to Download


  1. or download this
    print "Here\n" while();
    
  2. or download this
    while(){print "Here 2\n"}
    
  3. or download this
    # perl6
    
    while () {
        say "Hello"
    }
    
  4. or download this
    while {say "Hello 2"}
    
  5. or download this
    while 1 {say "Hello 2"}