#!/usr/bin/perl use strict; use warnings; use Test::LectroTest::Generator qw(:common :combinators); my $str_gen = String( charset => "a-f", length => [12,] ); for my $string_guidance (1) { my $i = $str_gen->generate($string_guidance); print "$i "; } print "\n";