The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#!/usr/bin/perl

use EnableModule;
my $x = "One";

$x = "FirstVal";

EnableModule::set_x(\$x);

$x = "SecondVal";

EnableModule::set_x(\$x);

$x = "ThirdVal";

EnableModule::set_x(\$x);

$x = "FourthVal";

EnableModule::set_x(\$x);