in reply to BRUTEFORCE problem and a ?bug?

The ++ has some special magic!
#!/usr/local/bin/perl use strict; use warnings; my $input = 'abcdef'; my $start = 'a'; while (1){ last if $start eq $input; $start++; } print "$input -> $start\n";
output:
abcdef -> abcdef