Created
September 13, 2008 11:05
-
-
Save masak/10589 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<masak> perl6: my $b := &say; $b(5) | |
<p6eval> elf 22235: | |
OUTPUT[/home/evalenv/pugs/misc/elf/elf_f_src/STD_red/match.rb:141:in `block | |
in to_dump0': undefined method `to_dump0' for true:TrueClass (NoMethodError) | |
from /home/evalenv/pugs/misc/elf/elf_f_src/STD_red/match.rb:140:in `each' | |
from | |
<p6eval> ../home/evalenv/pugs/misc/elf/elf_f_src/STD_red/match.r... | |
<p6eval> ..pugs, rakudo 31066: OUTPUT[5] | |
<masak> perl6: my &b := &say; b(5) | |
<p6eval> elf 22235: | |
OUTPUT[/home/evalenv/pugs/misc/elf/elf_f_src/STD_red/match.rb:141:in `block | |
in to_dump0': undefined method `to_dump0' for true:TrueClass (NoMethodError) | |
from /home/evalenv/pugs/misc/elf/elf_f_src/STD_red/match.rb:140:in `each' | |
from | |
<p6eval> ../home/evalenv/pugs/misc/elf/elf_f_src/STD_red/match.r... | |
<p6eval> ..pugs, rakudo 31066: OUTPUT[5] | |
<masak> perl6: my &b := &say; &b(5) | |
<p6eval> rakudo 31066: OUTPUT[Lexical 'b' not foundcurrent instr.: '_block11' pc 21 | |
(EVAL_13:16)] | |
<p6eval> ..elf 22235: | |
OUTPUT[/home/evalenv/pugs/misc/elf/elf_f_src/STD_red/match.rb:141:in `block | |
in to_dump0': undefined method `to_dump0' for true:TrueClass (NoMethodError) | |
from /home/evalenv/pugs/misc/elf/elf_f_src/STD_red/match.rb:140:in `each' | |
from | |
<p6eval> ../home/evalenv/pugs/misc/elf/elf_f_src/STD_red/match.r... | |
<p6eval> ..pugs: OUTPUT[5] | |
<masak> that last one, is it supposed to work (as it does in Pugs)? | |
<masak> I find nothing in the synopses about this. | |
<masak> also, should this work? | |
<masak> perl6: sub a(&b) { &b(5) }; a(&say) | |
<p6eval> rakudo 31066: OUTPUT[invoke() not implemented in class 'Undef'current | |
instr.: 'a' pc 145 (EVAL_15:67)] | |
<p6eval> ..elf 22235: | |
OUTPUT[/home/evalenv/pugs/misc/elf/elf_f_src/STD_red/match.rb:141:in `block | |
in to_dump0': undefined method `to_dump0' for true:TrueClass (NoMethodError) | |
from /home/evalenv/pugs/misc/elf/elf_f_src/STD_red/match.rb:140:in `each' | |
from | |
<p6eval> ../home/evalenv/pugs/misc/elf/elf_f_src/STD_red/match.r... | |
<p6eval> ..pugs: OUTPUT[5] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment