Re: [perl #31662] [RFE] Allow PIR to declare/init .locals in one line

2004-09-22 Thread Leopold Toetsch
Will Coleda <[EMAIL PROTECTED]> wrote: > It would be nice if we had some syntactic sugar in PIR, such that: > .sub main @MAIN > .local int foo = 1 > print foo > end > .end Well, if it's a constant, you can already write: .const int foo = 1 > ... for any type of intializer code... > .l

[perl #31662] [RFE] Allow PIR to declare/init .locals in one line

2004-09-21 Thread via RT
# New Ticket Created by Will Coleda # Please include the string: [perl #31662] # in the subject line of all future correspondence about this issue. # http://rt.perl.org:80/rt3/Ticket/Display.html?id=31662 > It would be nice if we had some syntactic sugar in PIR, such that: .sub main @MAIN