On Sunday, 17 May 2015 at 09:10:06 UTC, Dennis Ritchie wrote:
It's uncomfortable: ----- char[][] s = [['f', 'o', 'o'], ['b', 'a', 'r']]; s[1][1] = 't';
auto s = ["foo".dup, "bar".dup]; s[1][1] = 't';
Jack Applegame via Digitalmars-d-learn Sun, 17 May 2015 02:22:41 -0700
On Sunday, 17 May 2015 at 09:10:06 UTC, Dennis Ritchie wrote:
It's uncomfortable: ----- char[][] s = [['f', 'o', 'o'], ['b', 'a', 'r']]; s[1][1] = 't';
auto s = ["foo".dup, "bar".dup]; s[1][1] = 't';