Mocking IO - module
package MyModule1;
use strict;
use warnings;
sub game {
print("Enter your name: ");
my $name = <STDIN>;
chomp $name;
print("Hello '$name'\n");
return;
}
42;
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
package MyModule1;
use strict;
use warnings;
sub game {
print("Enter your name: ");
my $name = <STDIN>;
chomp $name;
print("Hello '$name'\n");
return;
}
42;