Author: larry
Date: Sat Dec 23 18:57:20 2006
New Revision: 13503
Modified:
doc/trunk/design/syn/S05.pod
Log:
removed "is from" in favor of ":= cat" which composes better.
Modified: doc/trunk/design/syn/S05.pod
==============================================================================
--- doc/trunk/design/syn/S05.pod (original)
+++ doc/trunk/design/syn/S05.pod Sat Dec 23 18:57:20 2006
@@ -14,9 +14,9 @@
Maintainer: Patrick Michaud <[EMAIL PROTECTED]> and
Larry Wall <[EMAIL PROTECTED]>
Date: 24 Jun 2002
- Last Modified: 18 Oct 2006
+ Last Modified: 23 Dec 2006
Number: 5
- Version: 40
+ Version: 41
This document summarizes Apocalypse 5, which is about the new regex
syntax. We now try to call them I<regex> rather than "regular
@@ -3024,7 +3024,7 @@
Anything that can be tied to a string can be matched against a
regex. This feature is particularly useful with input streams:
- my $stream is from($fh); # tie scalar to filehandle
+ my $stream := cat =$fh; # tie scalar to filehandle
# and later...