June 10, 2017
kheaser@IT-ASST-SB MINGW64 /c/Users/kheaser/Git/Delivery/projects (master)
$ dub init 00_01_print_ogl_ver



... All this white space here is me just pressing the Enter key
... to get the default values.



Package recipe format (sdl/json) [json]: Name [00_01_print_ogl_ver]: Description [A minimal D application.]: Author name [kheaser]: License [proprietary]: Copyright string [Copyright © 2017, kheaser]: Add dependency (leave empty to skip) []: Successfully created an empty project in 'C:\Users\kheaser\OneDrive for Business\GitHub\Delivery\projects\00_01_print_ogl_ver'.
Package successfully created in 00_01_print_ogl_ver

Any recommendations?

I guess I could just run two command lines in parallel. One regular Windows command line for dub and another git bash window for GIT commands?

Or should Git and Dub be kept firmly apart?


June 10, 2017
On Saturday, 10 June 2017 at 16:11:31 UTC, WhatMeWorry wrote:
> kheaser@IT-ASST-SB MINGW64 /c/Users/kheaser/Git/Delivery/projects (master)
> $ dub init 00_01_print_ogl_ver
>
>
>
> ... All this white space here is me just pressing the Enter key
> ... to get the default values.

If the problem is that the text doesn't show until you've entered past all the prompts and the program exits, then it's the terminal you're using not playing well with D.

With the default Cygwin terminal this will not show a delayed countdown, but rather all numbers at once after the combined pause:

import std.stdio;
import core.thread;

void main()
{
    foreach (i; 0..5)
    {
        writeln(i);
        Thread.sleep(1.seconds);
    }
}

With the normal Windows command prompt, it behaves as it should. Someone else will have to explain what the problem is, but it's something about the terminal not acting like a proper tty or something along those lines.