Help for this page

Select Code to Download


  1. or download this
    my@l=(open@ARGS[0]).readline();
    my$i;$i=@l-10 if@l>10;
    say@l[$i..Inf];
    
  2. or download this
    my@l=(open@ARGS[0]).readline();
    my$i=@l>10??@l-10::0;
    say@l[$i..Inf];
    
  3. or download this
    my@l= =open@ARGS[0];
    my$i=@l>10??@l-10::0;
    say@l[$i..Inf];