Hi,
I'm trying to do something really simple, but it just won't work: How can I create an empty file (fe .txt), and close it without writing anything in it?
I've tried this:
open(ORDER, ">$name") or die $!;But then it says:
I've tried a lot of other things, like:
open(ORDER, "+>", "$name")...