[svn:parrot] r37678 - in trunk: . examples/library

coke at svn.parrot.org coke at svn.parrot.org
Tue Mar 24 13:50:02 UTC 2009


Author: coke
Date: Tue Mar 24 13:50:01 2009
New Revision: 37678
URL: https://trac.parrot.org/parrot/changeset/37678

Log:
Rename a conway LIFE file from .l to .life

Added:
   trunk/examples/library/acorn.life
      - copied unchanged from r37676, trunk/examples/library/acorn.l
Deleted:
   trunk/examples/library/acorn.l
Modified:
   trunk/MANIFEST
   trunk/examples/library/ncurses_life.pir

Modified: trunk/MANIFEST
==============================================================================
--- trunk/MANIFEST	Tue Mar 24 13:41:47 2009	(r37677)
+++ trunk/MANIFEST	Tue Mar 24 13:50:01 2009	(r37678)
@@ -1,7 +1,7 @@
 # ex: set ro:
 # $Id$
 #
-# generated by tools/dev/mk_manifest_and_skip.pl Tue Mar 24 02:18:09 2009 UT
+# generated by tools/dev/mk_manifest_and_skip.pl Tue Mar 24 13:43:54 2009 UT
 #
 # See tools/dev/install_files.pl for documentation on the
 # format of this file.
@@ -678,7 +678,7 @@
 examples/languages/squaak/t/00-sanity.t                     [examples]
 examples/languages/squaak/t/01-math.t                       [examples]
 examples/languages/squaak/t/harness                         [examples]
-examples/library/acorn.l                                    [examples]
+examples/library/acorn.life                                 [examples]
 examples/library/getopt_demo.pir                            [examples]
 examples/library/md5sum.pir                                 [examples]
 examples/library/ncurses_life.pir                           [examples]

Deleted: trunk/examples/library/acorn.l
==============================================================================
--- trunk/examples/library/acorn.l	Tue Mar 24 13:50:01 2009	(r37677)
+++ /dev/null	00:00:00 1970	(deleted)
@@ -1,5 +0,0 @@
-#P -3 -1 still ignored
-#C comments are ignored
-.*.....
-...*...
-**..***

Copied: trunk/examples/library/acorn.life (from r37676, trunk/examples/library/acorn.l)
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ trunk/examples/library/acorn.life	Tue Mar 24 13:50:01 2009	(r37678, copy of r37676, trunk/examples/library/acorn.l)
@@ -0,0 +1,5 @@
+#P -3 -1 still ignored
+#C comments are ignored
+.*.....
+...*...
+**..***

Modified: trunk/examples/library/ncurses_life.pir
==============================================================================
--- trunk/examples/library/ncurses_life.pir	Tue Mar 24 13:41:47 2009	(r37677)
+++ trunk/examples/library/ncurses_life.pir	Tue Mar 24 13:50:01 2009	(r37678)
@@ -7,11 +7,11 @@
 
 =head1 SYNOPSIS
 
-    % ./parrot examples/library/ncurses_life.pir examples/library/acorn.l
+    % ./parrot examples/library/ncurses_life.pir examples/library/acorn.life
 
 =head1 DESCRIPTION
 
-An C<ncurses> version of Conway's Life. F<acorn.l> is a I<life> file.
+An C<ncurses> version of Conway's Life. F<acorn.life> is a I<life> file.
 
 This version can load F<life.l> files (#P, #A, #R formats only). You get
 a lot of .l files by installing C<xlife>.
@@ -883,9 +883,14 @@
 
 =head1 SEE ALSO
 
-F<examples/library/acorn.l>, F<examples/pasm/life.pasm>,
+F<examples/library/acorn.life>, F<examples/pasm/life.pasm>,
 F<library/ncurses.pasm>, F<library/ncurses.declarations>.
 
+=head1 NOTE
+
+The normal extension for life files is C<.l> - Parrot treats these
+as C<lex> files, however, so we use a more verbose extension
+
 =cut
 
 # Local Variables:


More information about the parrot-commits mailing list