|
Synopsis_01 - Overview |
Synopsis_01 - Overview
Larry Wall <larry@wall.org>
Maintainer: Larry Wall <larry@wall.org> Date: 10 Aug 2004 Last Modified: 24 Oct 2005 Number: 1 Version: 3
This document summarizes Apocalypse 1, which covers the initial design concept. (These Synopses also contain updates to reflect the evolving design of Perl 6 over time, unlike the Apocalypses, which are frozen in time as ``historical documents''. These updates are not marked--if a Synopsis disagrees with its Apocalypse, assume the Synopsis is correct.)
The other basic assumption is that if we don't talk about something in these Synopses, it's the same as it was in Perl 5.
#!/usr/bin/perl6
use v6.0;
v6;
-e or
a bare version number:
perl -e '$x = 1'
#!/usr/bin/perl
v6; $x = 1;
|
Synopsis_01 - Overview |