forked from Raku/examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update cookbook file extensions and shebangs
- Changed file extension from .p6 to .raku - Changed shebangs to #!/usr/bin/env raku - Set file modes to executable See also: Raku#57, Raku#58
- Loading branch information
Showing
61 changed files
with
64 additions
and
56 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
...s/cookbook/01strings/01-00introduction.p6 → ...cookbook/01strings/01-00introduction.raku
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
#!/usr/bin/env raku | ||
|
||
use v6; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...ies/cookbook/01strings/01-01substrings.p6 → ...s/cookbook/01strings/01-01substrings.raku
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
#!/usr/bin/env raku | ||
|
||
use v6; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...kbook/01strings/01-03exchanging-values.p6 → ...ook/01strings/01-03exchanging-values.raku
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
#!/usr/bin/env raku | ||
|
||
use v6; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...kbook/01strings/01-04converting-values.p6 → ...ook/01strings/01-04converting-values.raku
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
#!/usr/bin/env raku | ||
|
||
use v6; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...s/cookbook/01strings/01-05namedunicode.p6 → ...cookbook/01strings/01-05namedunicode.raku
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
#!/usr/bin/env raku | ||
|
||
use v6; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...kbook/01strings/01-07reversing-strings.p6 → ...ook/01strings/01-07reversing-strings.raku
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
#!/usr/bin/env raku | ||
|
||
use v6; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...okbook/01strings/01-13upper-lower-case.p6 → ...book/01strings/01-13upper-lower-case.raku
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
#!/usr/bin/env raku | ||
|
||
use v6; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...ookbook/01strings/01-19trim-whitespace.p6 → ...kbook/01strings/01-19trim-whitespace.raku
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
#!/usr/bin/env raku | ||
|
||
use v6; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...okbook/01strings/01-22soundex-matching.p6 → ...book/01strings/01-22soundex-matching.raku
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
#!/usr/bin/env raku | ||
|
||
use v6; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...s/cookbook/02numbers/02-01valid-number.p6 → ...cookbook/02numbers/02-01valid-number.raku
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
#!/usr/bin/env raku | ||
|
||
use v6; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...ookbook/02numbers/02-05-roman-numerals.p6 → ...kbook/02numbers/02-05-roman-numerals.raku
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
#!/usr/bin/env raku | ||
|
||
use v6; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...kbook/02numbers/02-12taking-logarithms.p6 → ...ook/02numbers/02-12taking-logarithms.raku
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
#!/usr/bin/env raku | ||
|
||
use v6; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...cookbook/02numbers/02-14complex-number.p6 → ...okbook/02numbers/02-14complex-number.raku
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
#!/usr/bin/env raku | ||
|
||
use v6; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
.../cookbook/02numbers/02-15convert-bases.p6 → ...ookbook/02numbers/02-15convert-bases.raku
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
#!/usr/bin/env raku | ||
|
||
use v6; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...ok/03dates-and-times/03-01-todays-date.p6 → .../03dates-and-times/03-01-todays-date.raku
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
#!/usr/bin/env raku | ||
|
||
use v6; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...ates-and-times/03-02-datetime-to-epoch.p6 → ...es-and-times/03-02-datetime-to-epoch.raku
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
#!/usr/bin/env raku | ||
|
||
use v6; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...ates-and-times/03-03-epoch-to-datetime.p6 → ...es-and-times/03-03-epoch-to-datetime.raku
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
#!/usr/bin/env raku | ||
|
||
use v6; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...k/03dates-and-times/03-04-date-add-sub.p6 → ...03dates-and-times/03-04-date-add-sub.raku
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
#!/usr/bin/env raku | ||
|
||
use v6; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
.../03dates-and-times/03-05-sub-two-dates.p6 → ...3dates-and-times/03-05-sub-two-dates.raku
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
#!/usr/bin/env raku | ||
|
||
use v6; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...03dates-and-times/03-06-day-to-num-wmy.p6 → ...dates-and-times/03-06-day-to-num-wmy.raku
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
#!/usr/bin/env raku | ||
|
||
use v6; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
categories/cookbook/03dates-and-times/03-07-datetime-parse-from-str.pl.TODO
100644 → 100755
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
#!/usr/bin/env raku | ||
|
||
use v6; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...ok/03dates-and-times/03-09-hires-times.p6 → .../03dates-and-times/03-09-hires-times.raku
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
#!/usr/bin/env raku | ||
|
||
use v6; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
categories/cookbook/03dates-and-times/03-10-short-sleeps.pl.TODO
100644 → 100755
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
#!/usr/bin/env raku | ||
|
||
use v6; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...04-01specifying-a-list-in-your-program.p6 → ...-01specifying-a-list-in-your-program.raku
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
#!/usr/bin/env raku | ||
|
||
use v6; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...rrays/04-02printing-a-list-with-commas.p6 → ...ays/04-02printing-a-list-with-commas.raku
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
#!/usr/bin/env raku | ||
|
||
use v6; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
.../04arrays/04-05iterating-over-an-array.p6 → ...4arrays/04-05iterating-over-an-array.raku
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
#!/usr/bin/env raku | ||
|
||
use v6; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...ries/cookbook/05hashes/05-05traversing.p6 → ...es/cookbook/05hashes/05-05traversing.raku
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
#!/usr/bin/env raku | ||
|
||
use v6; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...ok/06pattern-matching/06-01-copy-subst.p6 → .../06pattern-matching/06-01-copy-subst.raku
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
#!/usr/bin/env raku | ||
|
||
use v6; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...06pattern-matching/06-02-match-letters.p6 → ...pattern-matching/06-02-match-letters.raku
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
#!/usr/bin/env raku | ||
|
||
use v6; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...okbook/07file-access/07-01opening_file.p6 → ...book/07file-access/07-01opening_file.raku
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
#!/usr/bin/env raku | ||
|
||
use v6; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...book/08file-contents/08-02-count-lines.p6 → ...ok/08file-contents/08-02-count-lines.raku
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
#!/usr/bin/env raku | ||
|
||
use v6; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...ok/08file-contents/08-03-process-words.p6 → .../08file-contents/08-03-process-words.raku
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
#!/usr/bin/env raku | ||
|
||
use v6; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...ntents/08-04-read-file-lines-backwards.p6 → ...ents/08-04-read-file-lines-backwards.raku
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
#!/usr/bin/env raku | ||
|
||
use v6; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...k/09directories/09-01-get-set-filetime.p6 → ...09directories/09-01-get-set-filetime.raku
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
#!/usr/bin/env raku | ||
|
||
use v6; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...okbook/09directories/09-02-delete-file.p6 → ...book/09directories/09-02-delete-file.raku
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
#!/usr/bin/env raku | ||
|
||
use v6; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...ook/09directories/09-03-copy-move-file.p6 → ...k/09directories/09-03-copy-move-file.raku
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
#!/usr/bin/env raku | ||
|
||
use v6; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...book/09directories/09-05-all-files-dir.p6 → ...ok/09directories/09-05-all-files-dir.raku
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
#!/usr/bin/env raku | ||
|
||
use v6; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...ories/09-06-filenames-matching-pattern.p6 → ...ies/09-06-filenames-matching-pattern.raku
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
#!/usr/bin/env raku | ||
|
||
use v6; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
.../09directories/09-07-all-files-process.p6 → ...9directories/09-07-all-files-process.raku
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
#!/usr/bin/env raku | ||
|
||
use v6; | ||
|
||
|
Empty file modified
0
categories/cookbook/09directories/09-08-remove-directory_contents.pl.TODO
100644 → 100755
Empty file.
2 changes: 1 addition & 1 deletion
2
...09directories/09-10-filename-splitting.p6 → ...directories/09-10-filename-splitting.raku
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
#!/usr/bin/env raku | ||
|
||
use v6; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...ook/09directories/09-11-all-files-lazy.p6 → ...k/09directories/09-11-all-files-lazy.raku
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
#!/usr/bin/env raku | ||
|
||
use v6; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
.../cookbook/10subroutines/10-01arguments.p6 → ...ookbook/10subroutines/10-01arguments.raku
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
#!/usr/bin/env raku | ||
|
||
use v6; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...s-and-ties/13-01constructing-an-object.p6 → ...and-ties/13-01constructing-an-object.raku
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
#!/usr/bin/env raku | ||
|
||
use v6; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...s-and-ties/13-03managing-instance-data.p6 → ...and-ties/13-03managing-instance-data.raku
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
#!/usr/bin/env raku | ||
|
||
use v6; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...ects-and-ties/13-04managing-class-data.p6 → ...ts-and-ties/13-04managing-class-data.raku
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
#!/usr/bin/env raku | ||
|
||
use v6; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...ts-and-ties/13-14overloading-operators.p6 → ...-and-ties/13-14overloading-operators.raku
100644 → 100755
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
#!/usr/bin/env raku | ||
|
||
use v6; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...okbook/14database-access/14-09-dbi-sql.p6 → ...book/14database-access/14-09-dbi-sql.raku
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
#!/usr/bin/env raku | ||
|
||
use v6; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...interactivity/15-01-parse-program-args.p6 → ...teractivity/15-01-parse-program-args.raku
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
#!/usr/bin/env raku | ||
|
||
use v6; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...ctivity/15-02-test-interactive-program.p6 → ...ivity/15-02-test-interactive-program.raku
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
#!/usr/bin/env raku | ||
|
||
use v6; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...ook/15interactivity/15-03-clear-screen.p6 → ...k/15interactivity/15-03-clear-screen.raku
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
#!/usr/bin/env raku | ||
|
||
use v6; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...teractivity/15-04-changing-text-colour.p6 → ...ractivity/15-04-changing-text-colour.raku
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
#!/usr/bin/env raku | ||
|
||
use v6; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
categories/cookbook/15interactivity/15-05-get-char.t
100644 → 100755
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
#!/usr/bin/env raku | ||
|
||
use v6; | ||
|
||
|
2 changes: 2 additions & 0 deletions
2
...ok/16processes/16-01-operation-timeout.p6 → .../16processes/16-01-operation-timeout.raku
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
#!/usr/bin/env raku | ||
|
||
use v6; | ||
|
||
=begin pod | ||
|
2 changes: 2 additions & 0 deletions
2
...book/16processes/16-13-listing-signals.p6 → ...ok/16processes/16-13-listing-signals.raku
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
#!/usr/bin/env raku | ||
|
||
use v6; | ||
|
||
=begin pod | ||
|
2 changes: 2 additions & 0 deletions
2
...cookbook/16processes/16-14-send-signal.p6 → ...okbook/16processes/16-14-send-signal.raku
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
#!/usr/bin/env raku | ||
|
||
use v6; | ||
|
||
=begin pod | ||
|
2 changes: 2 additions & 0 deletions
2
...book/16processes/16-18-catch-control-c.p6 → ...ok/16processes/16-18-catch-control-c.raku
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
#!/usr/bin/env raku | ||
|
||
use v6; | ||
|
||
=begin pod | ||
|
2 changes: 1 addition & 1 deletion
2
...ies/cookbook/17sockets/17-01tcp_client.p6 → ...s/cookbook/17sockets/17-01tcp_client.raku
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
#!/usr/bin/env raku | ||
|
||
use v6; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...ies/cookbook/17sockets/17-02tcp_server.p6 → ...s/cookbook/17sockets/17-02tcp_server.raku
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
#!/usr/bin/env raku | ||
|
||
use v6; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...book/19cgi-programming/19-01cgi-script.p6 → ...ok/19cgi-programming/19-01cgi-script.raku
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
#!/usr/bin/env raku | ||
|
||
use v6; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...ok/20web-automation/20-01-fetching-uri.p6 → .../20web-automation/20-01-fetching-uri.raku
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env perl6 | ||
#!/usr/bin/env raku | ||
|
||
use v6; | ||
|
||
|