Changeset 20630 for docs/Perl6/Spec
- Timestamp:
- 06/03/08 00:41:43 (6 months ago)
- Files:
-
- 1 modified
-
docs/Perl6/Spec/Functions.pod (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
docs/Perl6/Spec/Functions.pod
r20196 r20630 13 13 Mark Stosberg <mark@summersault.com> 14 14 Date: 12 Mar 2005 15 Last Modified: 3 1 Jan 200816 Version: 2 015 Last Modified: 3 Jun 2008 16 Version: 21 17 17 18 18 This document attempts to document the list of builtin functions in Perl 6. … … 61 61 =head2 Multis vs. Functions 62 62 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. 63 In actual fact, most of the "functions" defined here are multi 64 subs, or are multi methods that are also exported as multi subs. 65 The Prelude is responsible for importing all the standard multi subs 66 into the user's scope. 68 67 69 68 =head1 Type Declarations
