Skip to content

Instantly share code, notes, and snippets.

@peagha
Created August 23, 2016 00:56
Show Gist options
  • Save peagha/422706e6a7ad7afdc5a34d4c997ffde7 to your computer and use it in GitHub Desktop.
Save peagha/422706e6a7ad7afdc5a34d4c997ffde7 to your computer and use it in GitHub Desktop.
Calls Penny 3 times
def knock_the_door
`afplay /System/Library/Sounds/Pop.aiff`
end
def call_penny
`say "penny" --rate 300`
sleep 0.2
3.times { knock_the_door }
end
3.times { call_penny }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment