# New Ticket Created by [EMAIL PROTECTED] # Please include the string: [perl #19516] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt2/Ticket/Display.html?id=19516 >
Whitespace sensitive imcc issue... $ cat find_close.imc .sub MAIN $S0 = "\\" print $S0 end .end $ make find_close ../../imcc/imcc -o find_close.pasm find_close.imc last token = ["\\" ] (error) line 2: parse error Didn't create output asm. make: *** [find_close.pasm] Error 69 but.. $ cat find_close.imc .sub MAIN $S0 = "\\" print $S0 end .end $ make find_close perl -I../../../lib ../../../assemble.pl find_close.pasm > find_close.pbc ../../../parrot find_close.pbc \ -- Will "Coke" Coleda