mruby3-sys 3.2.0

Rust bindings for mruby 3.x Ruby language implementation
Documentation
# 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://www.opensource.org/licenses/mit-license.php>