# New Ticket Created by Solomon Foster # Please include the string: [perl #68960] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=68960 >
colomon: rakudo: say "hello"; say 1 / 0; say "goodbye" p6eval: rakudo c9a930: OUTPUT«hellogoodbye» Note that this has two outputs, not three. The "say 1 / 0;" silently fails. colomon: rakudo: say "hello"; say (1 / 0).Str; say "goodbye" p6eval: rakudo c9a930: OUTPUT«helloDivide by zero» Whereas adding an explicit call to Str yields a divide-by-zero error. -- Solomon Foster: [email protected] HarmonyWare, Inc: http://www.harmonyware.com
