How to pause terminal in D on Linux?

Zekereth via Digitalmars-d-learn digitalmars-d-learn at puremagic.com
Sat Jul 23 17:54:21 PDT 2016


On Saturday, 23 July 2016 at 19:08:00 UTC, WhatMeWorry wrote:
> What I thought would be trivial is becoming a nightmare. Can 
> anybody set me straight.  Thanks in advance.
>
> [...]

Use the getchar() function.

void pause(const string msg = "Press enter/return to continue...")
{
	write(msg);
	getchar();
}


More information about the Digitalmars-d-learn mailing list