On Tue Apr 14 13:00:36 2015, FROGGS.de wrote: > moar seems happy now: > > $ echo -e 'my \\a = any set <1 2 3>; \n say 1 ~~ a' | ./perl6-m > any(set(1, 2, 3)) > 0 > > JVM still broken here, I changed the REPL's ">" to "%" to not treat it > as a replied msg: > $ echo -e 'my \\a = any set <1 2 3>; \n say 1 ~~ a' | ./perl6-j > % my \a = any set <1 2 3>; > any(set(3, 1, 2)) > % say 1 ~~ a > Method 'gist' not found for invocant of class 'BOOTInt'
Behavior has changed slightly on JVM - $ echo -e 'my \\a = any set <1 2 3>; \n say 1 ~~ a' | ./perl6-m > any(set(1, 3, 2)) > False > $ echo -e 'my \\a = any set <1 2 3>; \n say 1 ~~ a' | ./perl6-j > any(set(3, 1, 2)) > False True > The ~~ check on the JVM outputs both False & True (as opposed to the moar version, which only outputs False) -- Will "Coke" Coleda
