Skip to content

Category Archives: Perl

Asking for a value in Perl

The following Perl snippet is useful if you want to ask for a value from the user. The get_new_value function takes the variable name and a default value as parameter. These are printed on screen. The default value is used if no input is given.

use strict;
 
sub get_new_value {
[...]