in reply to Re^4: Assistance fixing a "format" call
in thread Assistance fixing a "format" call
Note that it is also possible to open a variable for writing! This is handy sometimes to avoid making a temporary file that you have to delete.#!/usr/bin/perl -w use strict; my $data2 =<<END; This is an example of another way to do this than the DATA segment END open DATA2, '<', \$data2 or die $!; while (<DATA2>) { print; } __END__ Prints: This is an example of another way to do this than the DATA segment
|
|---|