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.
Fixed issue Raku#58 by adding shebang and making script executable.
- Loading branch information
Showing
57 changed files
with
106 additions
and
0 deletions.
There are no files selected for viewing
2 changes: 2 additions & 0 deletions
2
categories/cookbook/01strings/01-00introduction.pl
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,3 +1,5 @@ | ||
#!/usr/bin/env perl6 | ||
|
||
use v6; | ||
|
||
=begin pod | ||
|
2 changes: 2 additions & 0 deletions
2
categories/cookbook/01strings/01-01substrings.pl
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,3 +1,5 @@ | ||
#!/usr/bin/env perl6 | ||
|
||
use v6; | ||
|
||
=begin pod | ||
|
2 changes: 2 additions & 0 deletions
2
categories/cookbook/01strings/01-03exchanging-values.pl
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,3 +1,5 @@ | ||
#!/usr/bin/env perl6 | ||
|
||
use v6; | ||
|
||
=begin pod | ||
|
2 changes: 2 additions & 0 deletions
2
categories/cookbook/01strings/01-04converting-values.pl
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,3 +1,5 @@ | ||
#!/usr/bin/env perl6 | ||
|
||
use v6; | ||
|
||
=begin pod | ||
|
2 changes: 2 additions & 0 deletions
2
categories/cookbook/01strings/01-05namedunicode.pl
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,3 +1,5 @@ | ||
#!/usr/bin/env perl6 | ||
|
||
use v6; | ||
|
||
=begin pod | ||
|
2 changes: 2 additions & 0 deletions
2
categories/cookbook/01strings/01-07reversing-strings.pl
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,3 +1,5 @@ | ||
#!/usr/bin/env perl6 | ||
|
||
use v6; | ||
|
||
=begin pod | ||
|
2 changes: 2 additions & 0 deletions
2
categories/cookbook/01strings/01-13upper-lower-case.pl
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,3 +1,5 @@ | ||
#!/usr/bin/env perl6 | ||
|
||
use v6; | ||
|
||
=begin pod | ||
|
2 changes: 2 additions & 0 deletions
2
categories/cookbook/01strings/01-19trim-whitespace.pl
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,3 +1,5 @@ | ||
#!/usr/bin/env perl6 | ||
|
||
use v6; | ||
|
||
=begin pod | ||
|
2 changes: 2 additions & 0 deletions
2
categories/cookbook/01strings/01-22soundex-matching.pl
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,3 +1,5 @@ | ||
#!/usr/bin/env perl6 | ||
|
||
use v6; | ||
|
||
=begin pod | ||
|
2 changes: 2 additions & 0 deletions
2
categories/cookbook/02numbers/02-01valid-number.pl
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,3 +1,5 @@ | ||
#!/usr/bin/env perl6 | ||
|
||
use v6; | ||
|
||
=begin pod | ||
|
2 changes: 2 additions & 0 deletions
2
categories/cookbook/02numbers/02-05-roman-numerals.pl
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,3 +1,5 @@ | ||
#!/usr/bin/env perl6 | ||
|
||
use v6; | ||
|
||
=begin pod | ||
|
2 changes: 2 additions & 0 deletions
2
categories/cookbook/02numbers/02-14complex-number.pl
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,3 +1,5 @@ | ||
#!/usr/bin/env perl6 | ||
|
||
use v6; | ||
|
||
=begin pod | ||
|
2 changes: 2 additions & 0 deletions
2
categories/cookbook/02numbers/02-15convert-bases.pl
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,3 +1,5 @@ | ||
#!/usr/bin/env perl6 | ||
|
||
use v6; | ||
|
||
=begin pod | ||
|
2 changes: 2 additions & 0 deletions
2
categories/cookbook/03dates-and-times/03-01-todays-date.pl
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,3 +1,5 @@ | ||
#!/usr/bin/env perl6 | ||
|
||
use v6; | ||
|
||
=begin pod | ||
|
2 changes: 2 additions & 0 deletions
2
categories/cookbook/03dates-and-times/03-02-datetime-to-epoch.pl
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,3 +1,5 @@ | ||
#!/usr/bin/env perl6 | ||
|
||
use v6; | ||
|
||
=begin pod | ||
|
2 changes: 2 additions & 0 deletions
2
categories/cookbook/03dates-and-times/03-03-epoch-to-datetime.pl
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,3 +1,5 @@ | ||
#!/usr/bin/env perl6 | ||
|
||
use v6; | ||
|
||
=begin pod | ||
|
2 changes: 2 additions & 0 deletions
2
categories/cookbook/03dates-and-times/03-04-date-add-sub.pl
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,3 +1,5 @@ | ||
#!/usr/bin/env perl6 | ||
|
||
use v6; | ||
|
||
=begin pod | ||
|
2 changes: 2 additions & 0 deletions
2
categories/cookbook/03dates-and-times/03-05-sub-two-dates.pl
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,3 +1,5 @@ | ||
#!/usr/bin/env perl6 | ||
|
||
use v6; | ||
|
||
=begin pod | ||
|
2 changes: 2 additions & 0 deletions
2
categories/cookbook/03dates-and-times/03-06-day-to-num-wmy.pl
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,3 +1,5 @@ | ||
#!/usr/bin/env perl6 | ||
|
||
use v6; | ||
|
||
=begin pod | ||
|
2 changes: 2 additions & 0 deletions
2
categories/cookbook/03dates-and-times/03-07-datetime-parse-from-str.pl.TODO
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 perl6 | ||
|
||
use v6; | ||
|
||
=begin pod | ||
|
2 changes: 2 additions & 0 deletions
2
categories/cookbook/03dates-and-times/03-09-hires-times.pl
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,3 +1,5 @@ | ||
#!/usr/bin/env perl6 | ||
|
||
use v6; | ||
|
||
=begin pod | ||
|
2 changes: 2 additions & 0 deletions
2
categories/cookbook/03dates-and-times/03-10-short-sleeps.pl.TODO
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 perl6 | ||
|
||
use v6; | ||
|
||
=begin pod | ||
|
2 changes: 2 additions & 0 deletions
2
categories/cookbook/04arrays/04-01specifying-a-list-in-your-program.pl
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,3 +1,5 @@ | ||
#!/usr/bin/env perl6 | ||
|
||
use v6; | ||
|
||
=begin pod | ||
|
2 changes: 2 additions & 0 deletions
2
categories/cookbook/04arrays/04-02printing-a-list-with-commas.pl
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,3 +1,5 @@ | ||
#!/usr/bin/env perl6 | ||
|
||
use v6; | ||
|
||
=begin pod | ||
|
2 changes: 2 additions & 0 deletions
2
categories/cookbook/04arrays/04-05iterating-over-an-array.pl
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,3 +1,5 @@ | ||
#!/usr/bin/env perl6 | ||
|
||
use v6; | ||
|
||
=begin pod | ||
|
2 changes: 2 additions & 0 deletions
2
categories/cookbook/05hashes/05-05traversing.pl
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,3 +1,5 @@ | ||
#!/usr/bin/env perl6 | ||
|
||
use v6; | ||
|
||
=begin pod | ||
|
2 changes: 2 additions & 0 deletions
2
categories/cookbook/06pattern-matching/06-01-copy-subst.pl
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,3 +1,5 @@ | ||
#!/usr/bin/env perl6 | ||
|
||
use v6; | ||
|
||
=begin pod | ||
|
2 changes: 2 additions & 0 deletions
2
categories/cookbook/06pattern-matching/06-02-match-letters.pl
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,3 +1,5 @@ | ||
#!/usr/bin/env perl6 | ||
|
||
use v6; | ||
|
||
=begin pod | ||
|
2 changes: 2 additions & 0 deletions
2
categories/cookbook/07file-access/07-01opening_file.pl
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,3 +1,5 @@ | ||
#!/usr/bin/env perl6 | ||
|
||
use v6; | ||
|
||
=begin pod | ||
|
2 changes: 2 additions & 0 deletions
2
categories/cookbook/08file-contents/08-02-count-lines.pl
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,3 +1,5 @@ | ||
#!/usr/bin/env perl6 | ||
|
||
use v6; | ||
|
||
=begin pod | ||
|
2 changes: 2 additions & 0 deletions
2
categories/cookbook/08file-contents/08-03-process-words.pl
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,3 +1,5 @@ | ||
#!/usr/bin/env perl6 | ||
|
||
use v6; | ||
|
||
=begin pod | ||
|
2 changes: 2 additions & 0 deletions
2
categories/cookbook/08file-contents/08-04-read-file-lines-backwards.pl
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,3 +1,5 @@ | ||
#!/usr/bin/env perl6 | ||
|
||
use v6; | ||
|
||
=begin pod | ||
|
2 changes: 2 additions & 0 deletions
2
categories/cookbook/09directories/09-01-get-set-filetime.pl
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,3 +1,5 @@ | ||
#!/usr/bin/env perl6 | ||
|
||
use v6; | ||
|
||
=begin pod | ||
|
2 changes: 2 additions & 0 deletions
2
categories/cookbook/09directories/09-02-delete-file.pl
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,3 +1,5 @@ | ||
#!/usr/bin/env perl6 | ||
|
||
use v6; | ||
|
||
=begin pod | ||
|
2 changes: 2 additions & 0 deletions
2
categories/cookbook/09directories/09-03-copy-move-file.pl
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,3 +1,5 @@ | ||
#!/usr/bin/env perl6 | ||
|
||
use v6; | ||
|
||
=begin pod | ||
|
2 changes: 2 additions & 0 deletions
2
categories/cookbook/09directories/09-05-all-files-dir.pl
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,3 +1,5 @@ | ||
#!/usr/bin/env perl6 | ||
|
||
use v6; | ||
|
||
=begin pod | ||
|
2 changes: 2 additions & 0 deletions
2
categories/cookbook/09directories/09-06-filenames-matching-pattern.pl
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,3 +1,5 @@ | ||
#!/usr/bin/env perl6 | ||
|
||
use v6; | ||
|
||
=begin pod | ||
|
2 changes: 2 additions & 0 deletions
2
categories/cookbook/09directories/09-07-all-files-process.pl
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,3 +1,5 @@ | ||
#!/usr/bin/env perl6 | ||
|
||
use v6; | ||
|
||
=begin pod | ||
|
2 changes: 2 additions & 0 deletions
2
categories/cookbook/09directories/09-08-remove-directory_contents.pl.TODO
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 perl6 | ||
|
||
use v6; | ||
|
||
=begin pod | ||
|
2 changes: 2 additions & 0 deletions
2
categories/cookbook/09directories/09-10-filename-splitting.pl
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,3 +1,5 @@ | ||
#!/usr/bin/env perl6 | ||
|
||
use v6; | ||
|
||
=begin pod | ||
|
2 changes: 2 additions & 0 deletions
2
categories/cookbook/09directories/09-11-all-files-lazy.pl
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,3 +1,5 @@ | ||
#!/usr/bin/env perl6 | ||
|
||
use v6; | ||
|
||
=begin pod | ||
|
2 changes: 2 additions & 0 deletions
2
categories/cookbook/10subroutines/10-01arguments.pl
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,3 +1,5 @@ | ||
#!/usr/bin/env perl6 | ||
|
||
use v6; | ||
|
||
=begin pod | ||
|
2 changes: 2 additions & 0 deletions
2
categories/cookbook/13classes-objects-and-ties/13-01constructing-an-object.pl
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,3 +1,5 @@ | ||
#!/usr/bin/env perl6 | ||
|
||
use v6; | ||
|
||
=begin pod | ||
|
2 changes: 2 additions & 0 deletions
2
categories/cookbook/14database-access/14-09-dbi-sql.pl
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,3 +1,5 @@ | ||
#!/usr/bin/env perl6 | ||
|
||
use v6; | ||
|
||
=begin pod | ||
|
2 changes: 2 additions & 0 deletions
2
categories/cookbook/15interactivity/15-01-parse-program-args.pl
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,3 +1,5 @@ | ||
#!/usr/bin/env perl6 | ||
|
||
use v6; | ||
|
||
=begin pod | ||
|
2 changes: 2 additions & 0 deletions
2
categories/cookbook/15interactivity/15-02-test-interactive-program.pl
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,3 +1,5 @@ | ||
#!/usr/bin/env perl6 | ||
|
||
use v6; | ||
|
||
=begin pod | ||
|
2 changes: 2 additions & 0 deletions
2
categories/cookbook/15interactivity/15-03-clear-screen.pl
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,3 +1,5 @@ | ||
#!/usr/bin/env perl6 | ||
|
||
use v6; | ||
|
||
=begin pod | ||
|
2 changes: 2 additions & 0 deletions
2
categories/cookbook/15interactivity/15-04-changing-text-colour.pl
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,3 +1,5 @@ | ||
#!/usr/bin/env perl6 | ||
|
||
use v6; | ||
|
||
=begin pod | ||
|
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 perl6 | ||
|
||
use v6; | ||
|
||
=begin pod | ||
|
Empty file.
Empty file.
Empty file.
Empty file.
2 changes: 2 additions & 0 deletions
2
categories/cookbook/17sockets/17-01tcp_client.pl
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,3 +1,5 @@ | ||
#!/usr/bin/env perl6 | ||
|
||
use v6; | ||
|
||
=begin pod | ||
|
2 changes: 2 additions & 0 deletions
2
categories/cookbook/17sockets/17-02tcp_server.pl
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,3 +1,5 @@ | ||
#!/usr/bin/env perl6 | ||
|
||
use v6; | ||
|
||
=begin pod | ||
|
2 changes: 2 additions & 0 deletions
2
categories/cookbook/19cgi-programming/19-01cgi-script.pl
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,3 +1,5 @@ | ||
#!/usr/bin/env perl6 | ||
|
||
use v6; | ||
|
||
=begin pod | ||
|
2 changes: 2 additions & 0 deletions
2
categories/cookbook/20web-automation/20-01-fetching-uri.pl
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,3 +1,5 @@ | ||
#!/usr/bin/env perl6 | ||
|
||
use v6; | ||
|
||
=begin pod | ||
|