=begin pod =TITLE Terms Most syntactic constructs in Perl 6 can be categorized in I and L. Here you can find an overview of different kinds of terms. =head1 Literals =head2 Int 42 12_300_00 :16 L literals consist of digits, and can contain underscores between any two digits. To specify a base other than ten, use the colonpair form C<< :radix >>. =head2 Rat 12.34 1_200.345_678 L (rational numbers) literals contain two integer parts joined by a dot. Note that trailing dots are not allowed, so you have to write C<1.0> instead of C<1.> (this rule is important because there are infix operators starting with a dot, for example the C<..> L operator). =head2 Num 12.3e-32 3e8 L (floating point numbers) literals consist of L or L literals followed by an C and a (possibly negative) exponent. C<3e8> constructs a L with value C<3 * 10**8>. =head2 Str see the section on quoting constructs below. =head2 Regex see the section on quoting constructs below. =head2 Pair a => 1 'a' => 'b' :identifier :!identifier :identifier :identifier :identifer($value) :identifer['val1', 'val2'] :identifier{key1 => 'val1', key2 => 'value2'} :$item :@array :%hash :&callable L objects can be created either with C<< infix:«=>» >> (which auto-quotes the left-hand side if it is an identifier), or with the various colonpair forms. Those always start with a colon, and then are followed either by an identifier or the name of an already existing varible (whose name sans the sigil is used as the key, and value of the variable is used as the value of the pair). In the identifier form a colonpair, the optional value can be any circumfix. If it is left blank, the value is C. The value of the C<:!identifier> form is C. If used in an argument list, all of these forms count as named arguments, with the exception of C<< 'quoted string' => $value >>. =head2 Parcel () 1, 2, 3 «a b c» qw/a b c/ L literals are: the empty pair of parens C<()>, a comma-separated list, or several quoting constructs =head1 Quoting constructs TODO =head1 Identifier terms There are built-in identifier terms in Perl 6, which are listed below. In addition one can add new identifier terms with the syntax sub term: { 42 }; say fourty-two or as constants constant forty-two = 42; say fourty-two =head2 self Inside a method, C refers to the invocant (i.e. the object the method was called on). If used in a context where it doesn't make sense, a compile-time exception of type L is thrown. =head2 now Returns an L object representing the current time. =head2 rand Returns a pseudo-random L in the range C<0..^1>. =head2 pi Returns the number C, i.e. the ratio between circumference and diameter of a circle. =head2 e Returns Euler's number =head2 i Returns the imaginary unit (for L numbers). =head1 Variables Variables are discussed in L. =end pod