#reader(lib "htdp-intermediate-lambda-reader.ss" "lang")((modname shake-for-music) (read-case-sensitive #t) (teachpacks ()) (htdp-settings #(#t constructor repeating-decimal #f #t none #f ())))
(define WIDTH 320)
(define HEIGHT 480)
(define file-path "file:///android_asset/audio/Sweet Child.mp3")
(define initial-world false)
(define (swap w)
(not w))
(define (play w)
(if w
(make-effect:play-sound file-path)
(make-effect:pause-sound file-path)))
(big-bang WIDTH HEIGHT initial-world
(on-shake* swap play))