pause_with_message

Macro pause_with_message 

Source
macro_rules! pause_with_message {
    ($msg:expr) => { ... };
}
👎Deprecated since 0.1.1: Use pause! instead.
Expand description

Macro: pause_with_message!

Pauses the program execution and displays a custom message to the user. The program will wait until the user presses the Enter key.

§Arguments

  • $msg: The custom message to display before pausing.

§Deprecated

This macro has been deprecated since version 0.1.1. Use pause! instead.

§Example

pause_with_message!("Custom pause message...");