Author: masak
Date: 2009-01-07 06:59:42 +0100 (Wed, 07 Jan 2009)
New Revision: 24793
Modified:
docs/Perl6/Spec/S29-functions.pod
Log:
[S29] added mentions of getc, print, say and printf, with references to S16
for details
Modified: docs/Perl6/Spec/S29-functions.pod
===================================================================
--- docs/Perl6/Spec/S29-functions.pod 2009-01-07 05:43:05 UTC (rev 24792)
+++ docs/Perl6/Spec/S29-functions.pod 2009-01-07 05:59:42 UTC (rev 24793)
@@ -15,7 +15,7 @@
Moritz Lenz <[email protected]>
Date: 12 Mar 2005
Last Modified: 7 Jan 2009
- Version: 34
+ Version: 35
This document attempts to document the list of builtin functions in Perl 6.
It assumes familiarity with Perl 5 and prior synopses.
@@ -1742,6 +1742,41 @@
=back
+=head2 IO
+
+=over 4
+
+=item getc
+
+ our Bool method getc (IO $self: *...@list)
+
+See C<Synopsis 16: IPC / IO / Signals> for details.
+
+=item print
+
+ our Bool method print (IO $self: *...@list)
+ our Bool multi print (*...@list)
+ our Bool method print (Str $self: IO $io)
+
+See C<Synopsis 16: IPC / IO / Signals> for details.
+
+=item say
+
+ our Bool method say (IO $self: *...@list)
+ our Bool multi say (*...@list)
+ our Bool method say (Str $self: IO $io)
+
+See C<Synopsis 16: IPC / IO / Signals> for details.
+
+=item printf
+
+ our Bool method printf (IO $self: Str $fmt, *...@list)
+ our Bool multi printf (Str $fmt, *...@list)
+
+See C<Synopsis 16: IPC / IO / Signals> for details.
+
+=back
+
=head2 OS
=over