Help for this page

Select Code to Download


  1. or download this
    open(RES,"type bas.txt |");
    while(<RES>)
    {
    print $_;
    }
    
  2. or download this
    open(RES,"bas.txt");
    @text = <RES>;
    $all_text = join(@text);
    print $all_text;
    ...
        Message = $all_text;