mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-13 03:13:13 +01:00
10 lines
197 B
D
10 lines
197 B
D
import tango.io.Console;
|
|
void main()
|
|
{
|
|
Cout("getting name std").newline;
|
|
Cerr("getting name err").newline;
|
|
auto s = Cin.get();
|
|
Cout("putting name").newline;
|
|
Cout (s).newline;
|
|
}
|