12:39 >perl -Mstrict -wE "my @array = ('3', '22', '111'); say for sort { $a <=> $b } @array;" 3 22 111 12:43 >