# Expected output:
# hello from perl

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

say 'hello from perl';
