in reply to Re: Suggestions for optimizing this code...in thread Suggestions for optimizing this code...
open DF,">test.txt"; print DF @test; close DF; [download]
sysopen(DF,"test.txt", O_WRONLY | O_CREAT); syswrite DF,join('', @test); close DF; [download]