calog/vendor/mruby/mrbgems/mruby-sleep/README.md
2026-07-04 20:25:00 -05:00

29 lines
347 B
Markdown
Vendored

# Sleep Module for mruby
mruby sleep module
## Install by mrbgems
- add `conf.gem` line to your build configuration.
```ruby
MRuby::Build.new do |conf|
# ... (snip) ...
conf.gem :core => 'mruby-sleep'
end
```
## Example
```ruby
sleep(10)
usleep(10000)
```
# License
under the MIT License:
- <https://opensource.org/license/mit>