[svn:parrot] r37606 - trunk/docs/book

whiteknight at svn.parrot.org whiteknight at svn.parrot.org
Fri Mar 20 01:30:48 UTC 2009


Author: whiteknight
Date: Fri Mar 20 01:30:47 2009
New Revision: 37606
URL: https://trac.parrot.org/parrot/changeset/37606

Log:
Fix a PIR error in one of the samples from the book that I added

Modified:
   trunk/docs/book/ch03_pir_basics.pod

Modified: trunk/docs/book/ch03_pir_basics.pod
==============================================================================
--- trunk/docs/book/ch03_pir_basics.pod	Fri Mar 20 01:28:58 2009	(r37605)
+++ trunk/docs/book/ch03_pir_basics.pod	Fri Mar 20 01:30:47 2009	(r37606)
@@ -978,7 +978,7 @@
     $P1 = open "myfile.txt", "r"
     loop_top:
       $S0 = readline $P1
-      say $P0, $S0
+      print $P0, $S0
       if $P1 goto loop_top
     close $P1
   .end


More information about the parrot-commits mailing list