Help for this page

Select Code to Download


  1. or download this
     use RTF::Writer;
      my $rtf = RTF::Writer->new_to_file("greetings.rtf");
      $rtf->prolog();
    ...
        "Hi there!"
      );
      $rtf->close;
    
  2. or download this
     use RTF::Writer;
      my $rtf = RTF::Writer->new_to_file("greetings.rtf");
      my $foo = "rtf";
    ...
        "Hi there!"
      );
      ${$foo}->close;