Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 222 Bytes

028-engine-perl.md

File metadata and controls

25 lines (18 loc) · 222 Bytes

Run perl scripts

# should exist
Sys.which("perl")
##            perl 
## "/usr/bin/perl"

Does perl work?

$test = "jello world";
$test =~ s/j/h/;
print $test
## hello world