Help for this page

Select Code to Download


  1. or download this
      DB<3> ("a"x 1e6) =~ / (. (?: (?1) | ) ) /x; say length $1
    1000000
    ...
    
      DB<5> ("a"x 1e7) =~ / (. (?: (?1) | ) ) /x; say length $1
    Killed