digitalmars.D.learn - help starting
- mc <1234go1 gmail.com> Nov 03 2009
- Jesse Phillips <jessekphillips+D gamil.com> Nov 03 2009
- Jussi Jumppanen <jussij zeusedit.com> Nov 04 2009
I downloded D and it said its missing a debugger so i re downlouded that and i can still only run the program on CMD. What did i do wrong? and by any chance do you now how to separate a string(char[]) into words?
Nov 03 2009
mc Wrote:I downloded D and it said its missing a debugger so i re downlouded that and i can still only run the program on CMD. What did i do wrong?
I'm not sure exactly what you are doing wrong. In all likely-hood, you can run your program outside of CMD(Command prompt), but Windows will close the command prompt it creates before you notice it. I don't know of any requirement for a debugger. I suggest you review these pages to get started: http://www.prowiki.org/wiki4d/wiki.cgi?D__Tutorial/StartingWithD http://www.prowiki.org/wiki4d/wiki.cgi?D__Tutorial/StartingWithD/Compiler/DMDdo you now how to separate a string(char[]) into words?
Check out std.string; http://digitalmars.com/d/1.0/phobos/std_string.html char[][] split(char[] s); Split s[] into an array of words, using whitespace as the delimiter.
Nov 03 2009
mc Wrote: mc Wrote:I downloded D and it said its missing a debugger so i re downlouded that and i can still only run the program on CMD. What did i do wrong?
This link might help. Win32 Debugger for the D Programming Language - http://ddbg.mainia.de/
Nov 04 2009









Jesse Phillips <jessekphillips+D gamil.com> 