Core Function Pause

From Sputnik Wiki
Jump to: navigation, search
Pause( <expression> )

Contents

Description

Pause the execution of the script on the console window until any key is pressed.

Parameters

expression

Optional; A message to display to user.

Return Value

None

Remarks

None.

Example

println("Hello");
Pause("Press any key to continue\n");
println("Good bye");

Alternatively you can use the System() command

println("Hello");
system("pause");
println("Good bye");
Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox