Raku highlighting| docs.raku.org
Raku highlighting| docs.raku.org
Raku highlighting| docs.raku.org
Raku borrows many concepts from human language. Which is not surprising, considering it was designed by a linguist.| docs.raku.org
This section explains how raw data, variables and containers relate to each other in Raku. The different types of containers used in Raku are explained and the actions applicable to them like assigning, binding and flattening. More advanced topics like self-referential data, type constraints and custom containers are discussed at the end.| docs.raku.org
Raku highlighting| docs.raku.org
In Independent routines§| docs.raku.org
The Q lang§| docs.raku.org
Int§| docs.raku.org
Abstract class§| docs.raku.org
Raku highlighting| docs.raku.org
Software programming optimization technique| en.wikipedia.org
Grammar is a powerful tool used to destructure text and often to return data structures that have been created by interpreting that text.| docs.raku.org
Raku highlighting| docs.raku.org
Raku highlighting| docs.raku.org
This talk does not represent anyone's actual opinion. For a more serious take on software, try Destroy All Software Screencasts: 10 to 15 minutes every other week, dense with information on advanced topics like Unix, TDD, OO Design, Vim, Ruby, and Git.| www.destroyallsoftware.com
Raku highlighting| docs.raku.org
Raku highlighting| docs.raku.org
Raku highlighting| docs.raku.org
Raku highlighting| docs.raku.org
Raku highlighting| docs.raku.org
Introduction§| docs.raku.org
Routines are one of the means Raku has to reuse code. They come in several forms, most notably Methods, which belong in classes and roles and are associated with an object; and functions (also called subroutines or Subs, for short), which can be called independently of objects.| docs.raku.org
In Date§| docs.raku.org
Raku provides a rich built-in syntax for defining and using classes. It makes writing classes expressive and short for most cases, but also provides mechanisms to cover the rare corner cases.| docs.raku.org
Variables are symbolic names for values or containers. Variable declarations or assignment of values may create a container on the fly. Variable names can start with or without a special character called a sigil, followed optionally by a second special character named twigil and then an identifier.| docs.raku.org
A regular expression is a sequence of characters that defines a certain text pattern, typically one that one wishes to find in some large body of text.| docs.raku.org
See creating operators on how to define new operators.| docs.raku.org