mirror of
https://github.com/wifinigel/MikrotikScripting.git
synced 2025-06-21 01:15:43 +02:00
7 lines
184 B
Text
7 lines
184 B
Text
# filename: ch10-09-simple-pause.rsc
|
|
|
|
# A simple script that includes a 2 second pause
|
|
|
|
:put "Hello we're going to pause now...";
|
|
:delay 2;
|
|
:put "Pause complete. We're all done now!";
|