From 8544badcf1b13366c2502e288c4b1a2c6992e123 Mon Sep 17 00:00:00 2001 From: Patrick Spek Date: Sun, 12 Jul 2020 08:55:57 +0200 Subject: Update perl6 references to raku --- README.md | 2 +- lib/Config.rakumod | 2 +- t/02-getting.t | 2 +- t/03-having.t | 2 +- t/04-setting.t | 2 +- t/05-null-parser.t | 2 +- t/07-keys.t | 4 ++-- t/08-unsetting.t.t | 2 +- t/09-cloning.t | 4 ++-- 9 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 514dadd..d469dee 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ object without reading/writing a file, no parser is needed. Include the `Config` module in your script, instantiate it and use it as you please. -```perl6 +```raku use Config; my Config $config = Config.new(); diff --git a/lib/Config.rakumod b/lib/Config.rakumod index 65ba7b6..db05d7d 100644 --- a/lib/Config.rakumod +++ b/lib/Config.rakumod @@ -536,4 +536,4 @@ with this program. If not, see http://www.gnu.org/licenses/. =end pod -# vim: ft=perl6 sw=8 ts=8 noet +# vim: ft=raku sw=8 ts=8 noet diff --git a/t/02-getting.t b/t/02-getting.t index 04859e2..b7ffbfe 100644 --- a/t/02-getting.t +++ b/t/02-getting.t @@ -1,4 +1,4 @@ -#! /usr/bin/env perl6 +#! /usr/bin/env raku use v6.c; use Test; diff --git a/t/03-having.t b/t/03-having.t index 50348d0..c1779b0 100644 --- a/t/03-having.t +++ b/t/03-having.t @@ -1,4 +1,4 @@ -#! /usr/bin/env perl6 +#! /usr/bin/env raku use v6.c; use Test; diff --git a/t/04-setting.t b/t/04-setting.t index 96ab7c3..d846af7 100644 --- a/t/04-setting.t +++ b/t/04-setting.t @@ -1,4 +1,4 @@ -#! /usr/bin/env perl6 +#! /usr/bin/env raku use v6.c; use Test; diff --git a/t/05-null-parser.t b/t/05-null-parser.t index 72aedf8..fc3d4b2 100644 --- a/t/05-null-parser.t +++ b/t/05-null-parser.t @@ -1,4 +1,4 @@ -#! /usr/bin/env perl6 +#! /usr/bin/env raku use v6.c; use Test; diff --git a/t/07-keys.t b/t/07-keys.t index ddc4fdf..2ba1762 100644 --- a/t/07-keys.t +++ b/t/07-keys.t @@ -1,4 +1,4 @@ -#! /usr/bin/env perl6 +#! /usr/bin/env raku use v6; @@ -21,4 +21,4 @@ my @keys = < a b c.a c.b >; is $c.keys.sort, @keys, ".keys returns a list of all keys"; -# vim: ft=perl6 noet +# vim: ft=raku noet diff --git a/t/08-unsetting.t.t b/t/08-unsetting.t.t index da76164..a13ef36 100644 --- a/t/08-unsetting.t.t +++ b/t/08-unsetting.t.t @@ -1,4 +1,4 @@ -#! /usr/bin/env perl6 +#! /usr/bin/env raku use v6.c; use Test; diff --git a/t/09-cloning.t b/t/09-cloning.t index b13cd7d..0746eff 100644 --- a/t/09-cloning.t +++ b/t/09-cloning.t @@ -1,4 +1,4 @@ -#! /usr/bin/env perl6 +#! /usr/bin/env raku use v6.c; @@ -18,4 +18,4 @@ my Config $b = $a.clone; is-deeply $a.get, $b.get, "B contains the same data as A"; isnt $a, $b, "A and B are not the same object"; -# vim: ft=perl6 noet +# vim: ft=raku noet -- cgit v1.1