We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 367202a commit e231200Copy full SHA for e231200
doc/Language/mop.pod6
@@ -103,10 +103,10 @@ Returns the underlying C<Scalar> object, if there is one.
103
104
The presence of a C<Scalar> object indicates that the object is "itemized".
105
106
- .say for (1, 2, 3); # not itemized, so "1\n2\n3\n"
107
- .say for [1, 2, 3]; # itemized, so "1 2 3\n"
108
- say (1, 2, 3).VAR ~~ Scalar; # False
109
- say [1, 2, 3].VAR ~~ Scalar; # True
+ .say for (1, 2, 3); # not itemized, so "1\n2\n3\n"
+ .say for $(1, 2, 3); # itemized, so "(1 2 3)\n"
+ say (1, 2, 3).VAR ~~ Scalar; # False
+ say $(1, 2, 3).VAR ~~ Scalar; # True
110
111
=head1 Structure of the meta object system
112
0 commit comments