Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix INIT block test
  • Loading branch information
sorear committed Dec 28, 2010
1 parent 710b329 commit dc2fc3b
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
9 changes: 9 additions & 0 deletions docs/announce.v1
Expand Up @@ -79,3 +79,12 @@ the Common Language Runtime in the form of Mono.
Contact sorear in irc.freenode.net #perl6 or via the sender address of
this mailing. Also see docs/lhf.txt for a list of things that need to
be done in no particular order.

Future directions

To simplify deployment and make &eval easier to implement, I'd like to
take Perl 5 out of the loop. Therefore I am engineering a way to allow
the compiler to be moved to Perl 6; this will probably be finished by
v2 or v3. After that, expect lots of spectest work.

[1] https://github.com/sorear/niecza/zipball/v1
3 changes: 2 additions & 1 deletion test2.pl
Expand Up @@ -3,7 +3,8 @@
use MONKEY_TYPING;

{
my $str = '';
my $str;
INIT $str = '';
$str ~= 1;
INIT $str ~= 2;
$str ~= 3;
Expand Down

0 comments on commit dc2fc3b

Please sign in to comment.