hi
how to add some informations to file?
i tryed like this:
but it overwriting informations no adding.
how to solve that?
how to add some informations to file?
i tryed like this:
Code:
if (!open (FILE, ">some_file.txt"))
{
die "cant open file"
}
print FILE "hello world";
how to solve that?
Comment