Skip to content

Commit 0666c63

Browse files
author
It's secret to everybody
committed
Merge pull request #7 from Siddhant/master
More broken links fixed
2 parents 067b4c0 + 0bde7c4 commit 0666c63

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

docs/tablet-2-basic-syntax.txt

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ For more info on those, see [scalar
158158
variable](ap-b-lookup.html#scalar), [array
159159
variable](ap-b-lookup.html#array), [hash
160160
variable](ap-b-lookup.html#hash), [anonymous
161-
blocks](blocks.html#block), and [callable
161+
blocks](tablet-6-blocks.html), and [callable
162162
routines](tablet-3-variables.html#callable).
163163

164164
Q :b /\t\n/; # tab and new line character
@@ -254,7 +254,7 @@ word. Thats called *quote* protection.
254254

255255
Please note also that **:quotewords** (double pointy braces) implies
256256
**:double** (double quotes), which means all [interpolation
257-
rules](basic-syntax.html#interpolation) apply here also.
257+
rules](#interpolation) apply here also.
258258

259259
<$pi> eq '$pi'
260260
<<$pi>> eq "$pi" # eq '3.14159...'
@@ -303,7 +303,7 @@ Regex
303303

304304
Even being a completely different language then quoting on its own (as
305305
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
307307
operator with the right adverb.
308308

309309
Q :regex /.../ aka rx/.../
@@ -332,7 +332,7 @@ quoted code will be parsed and compiled into a abstract syntax tree
332332
(AST - internal representation of the compiler) during compile
333333
time. Result is the compiled AST. Parsing will be done by using the
334334
grammar stored in *\$\~Quasi*. This gets important when writing
335-
[macros](metaprogramming.html#macros).
335+
[macros](tablet-10-metaprogramming.html#macros).
336336

337337
Q :code /.../;
338338

@@ -342,11 +342,11 @@ Number Literals
342342
===============
343343

344344
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
346346
character in it, there will be an error. Chars of a number definition
347347
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)
350350
(v). The + and can act also as operator that convert into the
351351
numerical context, which still means: take from left to right all
352352
digits and stop with the first none number character.
@@ -397,7 +397,7 @@ with braces.
397397
(3/7).denominator
398398
(3/7).nude.perl
399399

400-
As always, [.perl](basic-syntax.html#perl) gives you an almost source
400+
As always, [.perl](#perl) gives you an almost source
401401
like code formatting which results here in 3/7. Adding **.nude** you
402402
get (3/7), the nude source code. There are 2 different [immutable
403403
value types](appendix-b-grouped.html#immutable-types) representing

0 commit comments

Comments
 (0)