Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
make possibility of using variables more obvious
  • Loading branch information
timo committed Nov 11, 2016
1 parent f6daf45 commit d9f1d14
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions doc/Type/Int.pod6
Expand Up @@ -31,8 +31,13 @@ Radix notation also supports round and angle brackets which allow you to parse
a string for a given base, and putting together digits into a whole number
respectively:
:16("9F") # 159
:100[99, 2, 3] # 990203
:16("9F") # 159
:100[99, 2, 3] # 990203
These notations allow you to use variables, too:
:16($ninetynine) # 153
:100[99, $two, 3] # 990203
=head1 Methods
Expand Down

0 comments on commit d9f1d14

Please sign in to comment.