add perl code execution

This commit is contained in:
Kjell Kvinge
2021-06-30 21:05:55 +02:00
committed by Maas Lalani
parent 9672d061b4
commit 7ac31fc040
2 changed files with 15 additions and 0 deletions

View File

@@ -12,6 +12,7 @@ Currently supported languages:
* `javascript`
* `python`
* `ruby`
* `perl`
---
@@ -66,3 +67,12 @@ print("Hello, world!")
```ruby
puts "Hello, world!"
```
---
### Perl
```perl
print ("hello, world");
```