The Perl workbench

WebPerl, say, Run, Reset, and privacy.

WebPerl runs in the tab. Reset clears the editor.

Goal

Say hello and a city list.

use strict;
use warnings;
use feature 'say';

say "Hello, Perl";
say "Nairobi kiosk";
use strict;
use warnings;
use feature 'say';

my @cities = ("Nairobi", "Mombasa", "Kisumu");
say scalar @cities;
say $cities[0];