http://qs321.pair.com?node_id=577524


in reply to the repetition operator does not repeat "\x00" Why?

or using Data::Dump::Streamer:

use strict; use warnings; use Data::Dump::Streamer; $_ = "\x00" x 26; Dump($_); $_ = "\x30" x 26; Dump($_);

Prints:

$VAR1 = "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"; $VAR1 = '00000000000000000000000000';

DWIM is Perl's answer to Gödel