So, I've spent an hour or two every night this week reading through the perl6 intro, and several of the various official perl6 docs, but I've run into an issue. I don't know if this is my problem, or a problem with the docs.
From the open() documentation, there is the following code example (spurt() simply prints something to the file):
my $fh = open("test", :w);
spurt $fh, "stuff\n";
But when I test it (code is verbatim, the line num in the error is the spurt() line):
my $wfh = open("in.txt", :w);
spurt $wfh, "a\n";
$wfh.close;
... it results in:
Type check failed in binding $path; expected Cool but got IO::Handle (
+IO::Handle.new(:path(...)
in block <unit> at nl.pl6 line 2
Can someone explain where I'm going wrong? If it's relevant, I just installed the most recent p6 bits yesterday afternoon.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.