pause_console 0.1.3

Pauses the console
Documentation

Description

Crate that brings functionality similar to c++'s system("pause")

Usage

use pause_console::*;
...

//print "Press Enter to continue..." then wait till Enter pressed
pause_console!();

//same with custom message
pause_console!("Sample message");

//same with newlines
pause_console!("\nSample message\n");