Skip to content

Instantly share code, notes, and snippets.

@lbdyck
Created May 25, 2023 16:41
Show Gist options
  • Save lbdyck/a3ed91c511acfb11eae9ae6b28d902b1 to your computer and use it in GitHub Desktop.
Save lbdyck/a3ed91c511acfb11eae9ae6b28d902b1 to your computer and use it in GitHub Desktop.
How to Sleep in REXX
/* rexx */
/* call USS sleep routine */
parse arg sleep_sec .
say time()
address 'SYSCALL' 'SLEEP ('sleep_sec')'
say time()
return 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment