diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2002-02-17 16:25:06 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-02-17 16:25:06 +0000 |
commit | d2321c93212ec55efb2273c89a29b5ee3b388e1b (patch) | |
tree | 1aed00cebaa92884cc6c26bb8033c554a00129f1 /pod/perlfaq3.pod | |
parent | 21e6de9edc1c8e10c36cd56202e335d1f481650e (diff) | |
download | perl-d2321c93212ec55efb2273c89a29b5ee3b388e1b.tar.gz |
FAQ sync.
p4raw-id: //depot/perl@14729
Diffstat (limited to 'pod/perlfaq3.pod')
-rw-r--r-- | pod/perlfaq3.pod | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/pod/perlfaq3.pod b/pod/perlfaq3.pod index 9326a033f9..0f678f1a37 100644 --- a/pod/perlfaq3.pod +++ b/pod/perlfaq3.pod @@ -1,6 +1,6 @@ =head1 NAME -perlfaq3 - Programming Tools ($Revision: 1.13 $, $Date: 2002/02/08 22:32:47 $) +perlfaq3 - Programming Tools ($Revision: 1.15 $, $Date: 2002/02/11 19:29:52 $) =head1 DESCRIPTION @@ -832,6 +832,9 @@ For example: print "Hello world\n" (then Run "Myscript" or Shift-Command-R) + # MPW + perl -e 'print "Hello world\n"' + # VMS perl -e "print ""Hello world\n""" @@ -850,8 +853,7 @@ characters as control characters. Using qq(), q(), and qx(), instead of "double quotes", 'single quotes', and `backticks`, may make one-liners easier to write. -There is no general solution to all of this. It is a mess, pure and -simple. Sucks to be away from Unix, huh? :-) +There is no general solution to all of this. It is a mess. [Some of this answer was contributed by Kenneth Albanowski.] |