diff --git a/oregano/Tutorial.md b/oregano/Tutorial.md index a626f2b..bf6cf12 100644 --- a/oregano/Tutorial.md +++ b/oregano/Tutorial.md @@ -194,10 +194,12 @@ Example: Currently not working, or the start-time syntax is wrong. -`(play-note start-time duration instrument frequency)` - -`(play-note-at 2 1 "sin-inst" 440)` +```scheme +(play-note start-utc-seconds duration instrument frequency) +;; play 2 seconds in the future +(play-note-at (+ 2 (current-seconds)) 1 "sin-inst" 440) +``` ---