Jeroen Bollen:

it makes it really annoying to work with the command line, as you kinda have to strip off the last character and thus cannot make the string immutable.


void main() {
    import std.stdio, std.string;
    immutable txt = readln.chomp;
    writeln(">", txt, "<");
}


Bye,
bearophile

Reply via email to