Unverified Commit ec812c64 authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto Committed by GitHub

Merge pull request #4185 from icm7216/fix-sleep-example

Fix sleep example
parents 730b9253 59651f43
......@@ -8,15 +8,15 @@ MRuby::Build.new do |conf|
# ... (snip) ...
conf.gem :git => 'https://github.com/matsumoto-r/mruby-sleep.git'
conf.gem :core => 'mruby-sleep'
end
```
## example
```ruby
Sleep::sleep(10)
Sleep::usleep(10000)
sleep(10)
usleep(10000)
```
# License
......
Sleep::sleep(10)
Sleep::usleep(10000)
sleep(10)
usleep(10000)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment