[pure-lang-svn] SF.net SVN: pure-lang:[752] pure/trunk
Status: Beta
Brought to you by:
agraef
From: <ag...@us...> - 2008-09-11 20:30:39
|
Revision: 752 http://pure-lang.svn.sourceforge.net/pure-lang/?rev=752&view=rev Author: agraef Date: 2008-09-11 20:30:06 +0000 (Thu, 11 Sep 2008) Log Message: ----------- Final touches (0.6 release). Modified Paths: -------------- pure/trunk/ChangeLog pure/trunk/NEWS pure/trunk/README Modified: pure/trunk/ChangeLog =================================================================== --- pure/trunk/ChangeLog 2008-09-11 16:13:05 UTC (rev 751) +++ pure/trunk/ChangeLog 2008-09-11 20:30:06 UTC (rev 752) @@ -1,3 +1,9 @@ +2008-09-11 Albert Graef <Dr....@t-...> + + * 0.6 release. + + * runtime.cc, lib/math.pure: More bugfixes. + 2008-09-06 Albert Graef <Dr....@t-...> * pure.cc, lexer.ll: Add 'dump' command. This is similar to Modified: pure/trunk/NEWS =================================================================== --- pure/trunk/NEWS 2008-09-11 16:13:05 UTC (rev 751) +++ pure/trunk/NEWS 2008-09-11 20:30:06 UTC (rev 752) @@ -1,5 +1,5 @@ -** Pure 0.6 (in progress) +** Pure 0.6 2008-09-11 New stuff in this release (please see the ChangeLog and the manual for details): Modified: pure/trunk/README =================================================================== --- pure/trunk/README 2008-09-11 16:13:05 UTC (rev 751) +++ pure/trunk/README 2008-09-11 20:30:06 UTC (rev 752) @@ -45,10 +45,10 @@ can also just type EOF a.k.a. Ctrl-D at the beginning of the interpreter's command line). For instance: -Pure 0.5 (i686-pc-linux-gnu) Copyright (c) 2008 by Albert Graef +Pure 0.6 (i686-pc-linux-gnu) Copyright (c) 2008 by Albert Graef This program is free software distributed under the GNU Public License (GPL V3 or later). Please see the COPYING file for details. -Loaded prelude from /usr/local/lib/pure-0.5/prelude.pure. +Loaded prelude from /usr/local/lib/pure-0.6/prelude.pure. > fact n = if n>0 then n*fact (n-1) else 1; > map fact (1..10); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |