@@ -158,7 +158,7 @@ For more info on those, see [scalar
158
158
variable](ap-b-lookup.html#scalar), [array
159
159
variable](ap-b-lookup.html#array), [hash
160
160
variable](ap-b-lookup.html#hash), [anonymous
161
- blocks](blocks.html#block ), and [callable
161
+ blocks](tablet-6- blocks.html), and [callable
162
162
routines](tablet-3-variables.html#callable).
163
163
164
164
Q :b /\t\n/; # tab and new line character
@@ -254,7 +254,7 @@ word. Thats called *quote* protection.
254
254
255
255
Please note also that **:quotewords** (double pointy braces) implies
256
256
**:double** (double quotes), which means all [interpolation
257
- rules](basic-syntax.html #interpolation) apply here also.
257
+ rules](#interpolation) apply here also.
258
258
259
259
<$pi> eq '$pi'
260
260
<<$pi>> eq "$pi" # eq '3.14159...'
@@ -303,7 +303,7 @@ Regex
303
303
304
304
Even being a completely different language then quoting on its own (as
305
305
to be defined in *\$\~Regex* and *\$\~P5Regex*), [regular
306
- expressions](regexes.html) can be built using the general quoting
306
+ expressions](tablet-9- regexes.html) can be built using the general quoting
307
307
operator with the right adverb.
308
308
309
309
Q :regex /.../ aka rx/.../
@@ -332,7 +332,7 @@ quoted code will be parsed and compiled into a abstract syntax tree
332
332
(AST - internal representation of the compiler) during compile
333
333
time. Result is the compiled AST. Parsing will be done by using the
334
334
grammar stored in *\$\~Quasi*. This gets important when writing
335
- [macros](metaprogramming.html#macros).
335
+ [macros](tablet-10- metaprogramming.html#macros).
336
336
337
337
Q :code /.../;
338
338
@@ -342,11 +342,11 @@ Number Literals
342
342
===============
343
343
344
344
Unlike strings, numbers don't need
345
- [quoting](basic-syntax.html #quoting). But if there is a non number
345
+ [quoting](#quoting). But if there is a non number
346
346
character in it, there will be an error. Chars of a number definition
347
347
are: (0-9,.,+,-,e,E,i,_) including the [radix
348
- prefixes](basic-syntax.html #radix-prefixes): (0b,0o,0d,0x) and the
349
- prefix for [version numbering](basic-syntax.html #version-number)
348
+ prefixes](#radix-prefixes): (0b,0o,0d,0x) and the
349
+ prefix for [version numbering](#version-number)
350
350
(v). The + and can act also as operator that convert into the
351
351
numerical context, which still means: take from left to right all
352
352
digits and stop with the first none number character.
@@ -397,7 +397,7 @@ with braces.
397
397
(3/7).denominator
398
398
(3/7).nude.perl
399
399
400
- As always, [.perl](basic-syntax.html #perl) gives you an almost source
400
+ As always, [.perl](#perl) gives you an almost source
401
401
like code formatting which results here in 3/7. Adding **.nude** you
402
402
get (3/7), the nude source code. There are 2 different [immutable
403
403
value types](appendix-b-grouped.html#immutable-types) representing
0 commit comments