langs a-z
This commit is contained in:
parent
db842d013d
commit
d066446780
11389 changed files with 98361 additions and 1020 deletions
9
Task/Loops-For/Perl-6/loops-for-1.pl6
Normal file
9
Task/Loops-For/Perl-6/loops-for-1.pl6
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
for ^5 {
|
||||
|
||||
for 0..$_ {
|
||||
print "*";
|
||||
}
|
||||
|
||||
print "\n";
|
||||
|
||||
}
|
||||
1
Task/Loops-For/Perl-6/loops-for-2.pl6
Normal file
1
Task/Loops-For/Perl-6/loops-for-2.pl6
Normal file
|
|
@ -0,0 +1 @@
|
|||
say '*' x $_ for 1..5;
|
||||
1
Task/Loops-For/Perl-6/loops-for-3.pl6
Normal file
1
Task/Loops-For/Perl-6/loops-for-3.pl6
Normal file
|
|
@ -0,0 +1 @@
|
|||
([\~] "*" xx 5).join("\n").say;
|
||||
Loading…
Add table
Add a link
Reference in a new issue