in reply to Regarding STDOUT and indirect object notation for print
See perlobj for more info.#!/usr/bin/perl use strict; use warnings; use diagnostics; my $fh = \*STDOUT; $fh->print("Hello, World\n");
Update: removed begin block---not useful here:)
|
|---|