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 403d0fe commit 80d2f04Copy full SHA for 80d2f04
doc/Language/py-nutshell.pod6
@@ -13,8 +13,8 @@ constructs and idioms.
13
14
=head2 Hello, world
15
16
-Let's start with printing "Hello, world!". C<put> in Perl 6 is the
17
-equivalent of C<print> in Python. Like Python 2, parentheses are
+Let's start with printing "Hello, world!". L<put> in Perl 6 is the
+equivalent of L<print> in Python. Like Python 2, parentheses are
18
optional. A return is added to the end of the line.
19
20
Python 2
@@ -31,8 +31,8 @@ Perl 6
31
32
put "Hello, world!"
33
34
-There is also C<say>, which behaves similarly, but will call
35
-the C<gist> method of its argument.
+There is also L<say>, which behaves similarly, but will call
+the L<gist> method of its argument.
36
37
Perl 6
38
0 commit comments