Changeset 6

Show
Ignore:
Timestamp:
02/07/05 01:45:16 (4 years ago)
Author:
autrijus
svk:copy_cache_prev:
1041
Message:

* add tests and authors.

Files:
3 added
4 modified

Legend:

Unmodified
Added
Removed
  • ChangeLog

    r4 r6  
     1[Changes for 6.0.1 - February 7, 2005] 
     2 
     3* Fix building on Mac OS X. (ingy, gugod) 
     4* Characters in single quotes should not be escaped. (juerd) 
     5* Add one very basic test in t/.  
     6 
    17[Changes for 6.0.0 - February 7, 2005] 
    28 
  • MANIFEST

    r4 r6  
    99inc/Module/Install/WriteAll.pm 
    1010lib/Perl6/Pugs.pm 
     11AUTHORS 
    1112ChangeLog 
    1213Makefile.PL 
  • lib/Perl6/Pugs.pm

    r4 r6  
    11package Perl6::Pugs; 
    2 $Pugs::VERSION = '6.0.0'; 
     2$Pugs::VERSION = '6.0.1'; 
    33 
    44use strict; 
     
    1010=head1 VERSION 
    1111 
    12 This document describes version 6.0.0 of Pugs, released February 7, 2005. 
     12This document describes version 6.0.1 of Pugs, released February 7, 2005. 
    1313 
    1414=head1 SYNOPSIS 
  • src/Main.hs

    r4 r6  
    6363 
    6464doRun str args = do 
    65     runLex (putStrLn . concatMap vCast . vCast . evaluate emptyEnv) parseOp str 
     65    runLex (putStr . concatMap vCast . vCast . evaluate emptyEnv) parseOp str 
    6666