@@ -49,22 +49,22 @@ Perl6-ish option pairs. That is, any of:
49
49
50
50
= begin table
51
51
Value is... Specify with... Or with... Or with...
52
- =============== =================== ============== ===========
53
- List :key[$e1,$e2,...] :key($e1,$e2,...)
54
- Hash :key{$k1=>$v1,$k2=>$v2}
52
+ =============== =================== ============== ===========
53
+ List :key[$e1, $e2, ...] :key($e1, $e2, ...)
54
+ Hash :key{$k1=>$v1, $k2=>$v2}
55
55
Boolean (true) :key :key(True) :key[True]
56
56
Boolean (false) :!key :key(False) :key[False]
57
57
String :key<str> :key('str') :key("str")
58
58
Int :key(42) :key[42]
59
59
Number :key(2.3) :key[2.3]
60
60
= end table
61
61
62
- Where '$e1,$e2,...' are list elements of type String, Int, Number, or
62
+ Where '$e1, $e2, ...' are list elements of type String, Int, Number, or
63
63
Boolean. Lists may have mixed element types. Note that one-element
64
64
lists are converted to the type of their element (String, Int, Number, or
65
65
Boolean).
66
66
67
- For hashes, '$k1,$k2,...' are keys of type Str and '$v1,$2,...'
67
+ For hashes, '$k1, $k2, ...' are keys of type Str and '$v1, $2, ...'
68
68
are values of type String, Int, Number, or Boolean.
69
69
70
70
Strings may use any of the single Q/q quote constructs, e.g.,
0 commit comments