I am endlessly impressed with the rapid progress of Parrot, and raise my glass to the contributers.

Song and drink for everyone. In pasm, of course ;-)
# Mmmm, beer good set I1, 99 # bottles of beer set I2, 1 # single bottle set S1, " of beer on the wall,\n" set S2, " of beer,\n" set S3, "Take one down, pass it around,\n" set S4, " of beer on the wall\n\n" set S5, " bottle" set S6, " bottles" set S7, "No more bottles of beer on the wall\n\n" set S8, "*Buuurrp*\n" branch n_bottles # start drinkin' n_bottles: print I1 print S6 print S1 print I1 print S6 print S2 print S3 dec I1 eq I1, I2, bottle_of # Aww, we're getting low print I1 print S6 print S4 ne I1, I2, n_bottles # keep on drinkin' bottle_of: print I1 print S5 print S4 branch one_bottle # bout time for a liver transplant one_bottle: print I1 # it's been fun print S5 print S1 print I1 print S5 print S2 print S3 print S7 print S8 end

-- dug

In reply to Re: Parrot 0.0.10 released (deserving of song) by dug
in thread Parrot 0.0.10 released by sfink

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.