Skip to content

Instantly share code, notes, and snippets.

@Tux
Created April 26, 2015 10:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Tux/6e06f3a455a8995adda4 to your computer and use it in GitHub Desktop.
Save Tux/6e06f3a455a8995adda4 to your computer and use it in GitHub Desktop.
use v6;
my $fh = open "t.csv", :w;
$fh.print("+");
$fh.close;
$fh = open "t.csv", :r;
$fh.get.perl.say;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment