fork download
  1. #!/usr/bin/perl
  2.  
  3. my $target = "IF(You love DXLib) AND(CPlusPlus) THEN(Create Funny Games!)" ;
  4.  
  5. while($target =~ /[A-Z]+\(.{1,20}\)/g) {
  6. print ($&."\n");
  7. $target=$';
  8. }
Success #stdin #stdout 0s 3564KB
stdin
Standard input is empty
stdout
IF(You love DXLib)
AND(CPlusPlus)
THEN(Create Funny Games!)