Help for this page

Select Code to Download


  1. or download this
        use Indent( text => " ", eol => 1, level => 1 );
    
    ...
        ( Indent::over, Indent::printf $_ ) for ( @str );
        Indent::reset;
        Indent::printf("there is no way");
    
  2. or download this
        use Indent;
        our $indent = Indent->new( text => " ", eol => 1, level => 1 );
    ...
            ( ++$indent )->printf($_) for ( @str );
        }
        print($indent - 1, "there is no way");
    
  3. or download this
    package Indent;
    
    ...
    # ====================================================================
    +=====
    
    # EOF