On Thu, 23 May 2013 12:29:53 -0400, Kagamin <[email protected]> wrote:
A simple file copy utility.
int main(string[] args)
{
byte[] data = readFile(args[1]);
writeFile(args[2],data);
return 0;
}
What is the point of this? -Steve
On Thu, 23 May 2013 12:29:53 -0400, Kagamin <[email protected]> wrote:
A simple file copy utility.
int main(string[] args)
{
byte[] data = readFile(args[1]);
writeFile(args[2],data);
return 0;
}
What is the point of this? -Steve