Skip to content

Commit 128761f

Browse files
michaelruigrokJJ
authored andcommitted
emphasise list solution over an external module
1 parent fdb6b3d commit 128761f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

doc/Language/py-nutshell.pod6

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -777,8 +777,7 @@ print(tuple3) # OUTPUT: «(1, 'two', 3, 'ha
777777
778778
Raku
779779
780-
Raku does not have a builtin Tuple type, though they are available as modules.
781-
You can obtain the same behavior from Raku using the List type.
780+
Raku does not have a builtin Tuple type. You can get the same behavior from Raku using the List type, or from an external module.
782781
783782
my $list1 = (1, "two", 3, "hat");
784783
my $list2 = (5, 6, "seven");

0 commit comments

Comments
 (0)