Просмотр исходного кода

use raku for syntax highligting

tcheukueppo 2 лет назад
Родитель
Сommit
1b59e95614
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      hacking_pity/pity.md

+ 2 - 2
hacking_pity/pity.md

@@ -94,7 +94,7 @@ operators (substitution, transliteration and pattern matching).
 
 ### Examples
 
-```ruby
+```raku
 a = <one two three>
 
 # [ "Three", "TWo", "One" ], Lennon Stella album :)
@@ -113,7 +113,7 @@ quoted strings(`qq`), single quoted strings(`q`) and regex operators, Just like
 
 ### Examples
 
-```ruby
+```raku
 let a = qw|ONE TWO THREE|
 a.each{ .lc }