digitalmars.D - How to convert std.stream.stdin(deprecated) code?
- Jerry <Jerry_member pathlink.com> Aug 14 2005
- "Ben Hinkle" <ben.hinkle gmail.com> Aug 15 2005
Hi, I noticed that a lot of example codes on various websites use std.stream.stdin, and the dmd compiler won't compile them because "std.stream.stdin is deprecated". Can someone show me how to convert std.stream.stdin into compilable code? thanks in advance, Jerry
Aug 14 2005
"Jerry" <Jerry_member pathlink.com> wrote in message news:ddpc1j$7gb$1 digitaldaemon.com...Hi, I noticed that a lot of example codes on various websites use std.stream.stdin, and the dmd compiler won't compile them because "std.stream.stdin is deprecated". Can someone show me how to convert std.stream.stdin into compilable code? thanks in advance, Jerry
import std.cstream; ... std.cstream.din
Aug 15 2005








"Ben Hinkle" <ben.hinkle gmail.com>