Dan Sugalski wrote:
Tomorrow (tuesday) I'm heading out to Seabastapol CA for a week-long perl 6 design get-together thingie.
When you are on it, please - again - have a look at our current string behaviour. Keywords are: string_set, string header reusing, 50 % more performance with life cycles, ease of implementation of str/STR or however native/perl6 things currently are defined:
$ echo ' set S0, "not"
set S1, S0
set S0, "ok"
print S1
print "\n"
new P0, .PerlString
set P0, "not"
set P1, P0
set P0, "ok"
print P1
print "\n"
end
' | imcc -
not
ok
(just my words)
leo