From 525a3e29ac59d4f58ca044c0df13e8b906f2b125 Mon Sep 17 00:00:00 2001 From: Mustafa Date: Sun, 15 Jun 2014 10:13:08 -0700 Subject: [PATCH] Update Tutorial.md --- oregano/Tutorial.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) 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) +``` ---