nysus has asked for the wisdom of the Perl Monks concerning the following question:
The code works fine...#!/usr/bin/perl -w use strict; use lib '/site_path/path/site_perl/5.005/'; use Storable qw( freeze thaw ); my $hash = { 'black' => 1, 'white' => 2, 'blue' => 3, }; my $stored = freeze ($hash); print "$stored\n";
Why the heck am I getting that "PuTTYPuTTY" at the command line prompt after the program runs? I figure it's being caused by Storable because when I change the second to last line to: my $stored = "hello";, I don't get "PuTTYPuTTY" on the command line.perl storable.pl 12bluwhitblack [username dbi]$ PuTTYPuTTY
Any ideas?
$PM = "Perl Monk's";
$MCF = "Most Clueless Friar Abbot";
$nysus = $PM . $MCF;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Strange command line output after using Storable.pm
by bikeNomad (Priest) on Jun 12, 2001 at 07:36 UTC | |
|
Re: Strange command line output after using Storable.pm
by rob_au (Abbot) on Jun 12, 2001 at 12:02 UTC | |
|
Re: Strange command line output after using Storable.pm
by japhy (Canon) on Jun 12, 2001 at 06:31 UTC | |
by nysus (Parson) on Jun 12, 2001 at 06:40 UTC |