import std.stdio;
void main(string[] args) {
char[9] greeting1 = "Hello all";
writefln("%s",greeting1);
char[] greeting2 = "Good morning".dup;
writefln("%s",greeting2);
}
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/265984.html