Re: [perl #55586] [BUG] Parrot no longer uses HLL_map types?

2009-02-06 Thread Will Coleda
On Fri, Feb 6, 2009 at 8:21 AM, kjstol parrotc...@gmail.com wrote: On Fri, Feb 6, 2009 at 1:12 PM, James Keenan via RT parrotbug-follo...@parrotcode.org wrote: So here's the current state of what Coke originally posted: $ cat tclsh.pir .HLL 'Tcl' .loadlib 'tcl_group' .sub main :main

Re: [perl #55586] [BUG] Parrot no longer uses HLL_map types?

2009-02-06 Thread kjstol
.HLL has been changed into a one-operand directive:write .HLL 'Tcl'. the second operand indicated the (I think) shared lib containing the language's PMCs, if any. Use '.loadlib' for that. So: .HLL 'Tcl' .loadlib 'tcl_group' is equivalent to the old, deprecated and removed: .HLL 'Tcl',

[perl #55586] [BUG] Parrot no longer uses HLL_map types?

2008-06-10 Thread via RT
# New Ticket Created by Will Coleda # Please include the string: [perl #55586] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=55586 This code: $ cat tclsh.pir .HLL 'Tcl', 'tcl_group' .sub main :main .param pmc