Skip to content

Instantly share code, notes, and snippets.

@oskimura
Created September 28, 2010 10:43
Show Gist options
  • Save oskimura/600788 to your computer and use it in GitHub Desktop.
Save oskimura/600788 to your computer and use it in GitHub Desktop.
open F, "./euler11.txt" or die "dead\n";
print "[";
foreach $v (<F>)
{
@arr = split(/\s/,$v);
print join(',',@arr), "\n";
}
print "]\n";
close F;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment