Re: [Pugs] Semicolon as statement terminator

2005-03-25 Thread Autrijus Tang
On Sat, Mar 26, 2005 at 05:31:15PM +1100, Andrew Savige wrote: > I was flabbergasted by this one. > > # cat weird.p6 > my$x=42my$y="Zaphod"~"Beeblebrox"my$z="I think they're just > strange symbols of some kind"say"x='$x' y='$y' z='$z'" Thanks, fixed in r1192. Enjoy, /Autrijus/ pgpyAv8jmJREQ.pg

Re: [Pugs] Semicolon as statement terminator

2005-03-25 Thread Luke Palmer
Andrew Savige writes: > I was flabbergasted by this one. > > # cat weird.p6 > my$x=42my$y="Zaphod"~"Beeblebrox"my$z="I think they're just > strange symbols of some kind"say"x='$x' y='$y' z='$z'" > > # pugs weird.p6 > x='42' y='ZaphodBeeblebrox' z='I think they're just > strange symbols of some ki

[Pugs] Semicolon as statement terminator

2005-03-25 Thread Andrew Savige
I was flabbergasted by this one. # cat weird.p6 my$x=42my$y="Zaphod"~"Beeblebrox"my$z="I think they're just strange symbols of some kind"say"x='$x' y='$y' z='$z'" # pugs weird.p6 x='42' y='ZaphodBeeblebrox' z='I think they're just strange symbols of some kind' Wow! It actually seems to work. Are