Changeset 20630 for docs/Perl6/Spec

Show
Ignore:
Timestamp:
06/03/08 00:41:43 (6 months ago)
Author:
lwall
Message:

Note that multies aren't automatically global but are imported by Prelude now.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • docs/Perl6/Spec/Functions.pod

    r20196 r20630  
    1313                Mark Stosberg <mark@summersault.com> 
    1414 Date:          12 Mar 2005 
    15  Last Modified: 31 Jan 2008 
    16  Version:       20 
     15 Last Modified: 3 Jun 2008 
     16 Version:       21 
    1717 
    1818This document attempts to document the list of builtin functions in Perl 6. 
     
    6161=head2 Multis vs. Functions 
    6262 
    63 In actual fact, most of the "functions" defined here are multi subs, 
    64 or are multi methods that are also exported as multi subs.  Multi subs 
    65 are all visible in the global namespace (unless declared with a "my 
    66 multi").  The assumption is that with sufficiently specific typing on 
    67 the multis, the user is free to extend a particular name to new types. 
     63In actual fact, most of the "functions" defined here are multi 
     64subs, or are multi methods that are also exported as multi subs. 
     65The Prelude is responsible for importing all the standard multi subs 
     66into the user's scope. 
    6867 
    6968=head1 Type Declarations