Help for this page

Select Code to Download


  1. or download this
        open DF,">test.txt";
        print DF @test;
        close DF;
    
  2. or download this
        sysopen(DF,"test.txt", O_WRONLY | O_CREAT);
        syswrite DF,join('', @test);
        close DF;