From 047849c49ba88144537fdb6fb90626b934c48d76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20B=C3=B6ker?= Date: Sat, 13 Jun 2020 14:40:24 +0200 Subject: [PATCH] Perl 6 -> Raku --- META6.json | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/META6.json b/META6.json index 02d50b2..10ef11d 100644 --- a/META6.json +++ b/META6.json @@ -3,7 +3,7 @@ "name" : "sake", "version" : "0.0.3", "license" : "Artistic-2.0", - "description" : "A make-a-like implemented in PerlĀ 6", + "description" : "A make-a-like implemented in Raku", "provides" : { "Sake" : "lib/Sake.pm6", "Sake::Task" : "lib/Sake/Task.pm6", diff --git a/README.md b/README.md index 5b4eb87..ccf4dc9 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ ## sake -`sake` is a make-a-like implemented in PerlĀ 6. It was inspired by +`sake` is a make-a-like implemented in Raku. It was inspired by [rake](https://github.com/ruby/rake). @@ -26,7 +26,7 @@ requests and PRs are welcome! Create a file named `Sakefile` with these contents: -```perl6 +```raku task 'buy-food', { say 'Bought a salad.' }