summaryrefslogtreecommitdiffhomepage
path: root/perl6.html.markdown
Commit message (Collapse)AuthorAgeLines
* Fixed instance where wrong variable name was usedDustin Williams2016-03-20-1/+1
|
* Fix typo referenced in Issue #2075Jacob Ward2016-01-07-1/+1
|
* Merge pull request #2076 from tlvb/p6-packages-foobarAdam Bard2016-01-06-2/+1
|\ | | | | [perl 6] changed code output to as stated in comments
| * changed code output to as stated in commentsLeo Bärring2015-12-26-2/+1
| | | | | | | | | | The comments state that Foo::Bar::inc in the package variable example should increase $Foo::Bar::n and then print it. This did not happen, as `say ++$n;` was placed outside the block of the sub Foo::Bar::inc. The commit puts `say ++$n;` inside the block of Foo::Bar::inc.
* | Fix #2040Owen Rodda2015-12-27-1/+1
|/
* Fix typo in Perl 6 example (closes #2025)Ryan Gonzalez2015-11-19-1/+1
|
* Merge pull request #2028 from zoffixznet/catch-varven2015-11-17-1/+1
|\ | | | | Perl6: $! is not available inside the CATCH{} (Possibly)
| * $! is not available inside the CATCH{}Zoffix Znet2015-11-17-1/+1
| |
* | Address #1390ven2015-11-08-12/+17
| | | | | | @Zoffixnet, awaiting your review
* | Removed references to compilers other than the Rakudo.Paulo Henrique Rodrigues Pinheiro2015-10-15-3/+1
| |
* | Many fixes mentioned in #1390Zoffix Znet2015-10-10-45/+46
|/
* Merge pull request #1404 from tecknicaltom/masterLevi Bostian2015-10-09-1/+1
|\ | | | | [perl6] fix the output of ff example
| * fix the output of ff exampleTom Samstag2015-10-08-1/+1
| |
* | Merge pull request #1393 from aayushranaut/masterven2015-10-08-4/+3
|\ \ | |/ |/| Fixes typos and removed useless spaces
| * Fixes typosAayush Ranaut2015-10-07-23/+22
| |
* | removing whitespace all overGabriel Halley2015-10-07-21/+21
|/
* Update perl6.html.markdownJack Kuan2015-09-23-1/+1
|
* In perl6, 0 is not falsey anymoreAleks-Daniel Jakimenko2015-08-25-1/+1
|
* fix typo, resolves #1156ven2015-06-27-1/+1
|
* Merge remote-tracking branch 'upstream/master'Jonathan Scott Duff2015-06-25-1/+1
|\ | | | | | | | | Conflicts: perl6.html.markdown
| * Parrot is no longer supported.David Warring2015-05-13-2/+1
| | | | | | Also mention MoarVM before JVM.
| * Fix #1094ven2015-05-09-1/+1
| |
* | Add a link about parrot suspensionJonathan Scott Duff2015-04-24-4/+6
|/
* fix #1032ven2015-04-15-42/+18
| | | and a few more fixes/moving arounds
* Update perl6.html.markdownPhilippe Bricout2015-04-01-1/+3
| | | ($_.chars > 50) ~~ True : this is always True.
* Minor typo: fixed curly bracket direction (} -> {)Jeff Erickson2015-03-25-1/+1
|
* thrice .... gather ^3 counts three times "0 1 2" not 5ronaldxs2015-03-20-1/+1
| | | Probably just a paste-o mistake. Want to count 3 times not 5.
* Perl6, minor change in comments Philippe Bricout2015-03-01-1/+1
| | | It seems "when" should be replace by "given" at the end of the comment.
* Update perl6.html.markdownPhilippe Bricout2015-02-27-1/+1
| | | typo, wrong sub name in comment : mod => x-store
* fix #937ven2015-01-25-3/+2
|
* Fix link to synopses and call them 'design docs'raiph2015-01-09-1/+1
|
* @wryk++ven2014-12-29-1/+1
|
* rework of the tutorialven2014-12-24-176/+180
|
* 0 // 5 = 0ugexe2014-11-16-1/+1
| | | | | | | | 11:59 < nebuchadnezzar> m: say Any // Nil // 0 // 5 11:59 <+camelia> rakudo-moar 38e77b: OUTPUT«0␤» 11:59 < nebuchadnezzar> shouldn't it be 5? 12:00 < ugexe> 0 is a defined value 12:00 < ugexe> m: say Any || Nil || 0 || 5; 12:00 <+camelia> rakudo-moar 38e77b: OUTPUT«5␤»
* Update perl6.html.markdownKishore Relangi2014-11-10-1/+1
| | | It is actually generating fibonacci series
* Fix a comment that indicates what "say @array" will print.Peter Palfrader2014-10-12-1/+1
| | | | | We assigned 6 to @array[1] a few lines before, so say @array will print "a 6 b", not "a 2 b".
* Fix a brainoNami-Doc2014-10-07-1/+1
| | | caught by @wryk++
* Capturing captures, and numbering themNami-Doc2014-09-27-10/+76
| | | | | also, multi-indexing in arrays also, labeled loops (draft) also, arrays vs $() vs parcel vs ... (@moritz++)
* Exception thingies!Nami-Doc2014-09-23-4/+29
|
* Regexes thingies.Nami-Doc2014-09-13-3/+49
|
* Clarifications about *+* and ... with a subNami-Doc2014-08-27-1/+8
| | | mrf++
* Make the text fit.Nami-Doc2014-08-21-39/+45
|
* Update perl6 to fix some of its quirksNami-Doc2014-08-14-216/+318
|
* Minor fixes to return values.Patrick Sebastian Zimmermann2014-08-05-5/+5
|
* REGULAAAAAAR EXPREEEESSSIIIIOOOOOONS. GO!Nami-Doc2014-07-31-0/+128
| | | | | TODO nested sub signatures TODO start TODO flattening
* Statement prefixesNami-Doc2014-07-29-0/+94
| | | | | | | | also MAIN. some links under "Going further" TODO start TODO flattening TODO regexps
* Meta operator: reduce and zip (and combined !)Nami-Doc2014-07-27-15/+65
| | | Little note about compound operators
* More clarifications. @masak++Nami-Doc2014-07-26-8/+16
|
* Fix explanations about $_Nami-Doc2014-07-26-3/+15
| | | @masak++
* More fixes thanks to @timo++'s feedback.Nami-Doc2014-07-25-30/+52
|