12 lines
249 B
Plaintext
12 lines
249 B
Plaintext
|
module completions {
|
||
|
|
||
|
# Suspend execution for an interval of time
|
||
|
export extern sleep [
|
||
|
seconds: string # The number of seconds to sleep
|
||
|
--help(-h) # Print help (see more with '--help')
|
||
|
]
|
||
|
|
||
|
}
|
||
|
|
||
|
use completions *
|