racket/collects/teachpack/deinprogramm/sound.ss
Mike Sperber 018521cbc3 Merge from mike/dmda branch.
This adds the language levels, teachpacks, and documentation for the
textbook "Die Macht der Abstraktion".

svn: r14019
2009-03-09 07:51:09 +00:00

14 lines
279 B
Scheme

(module sound mzscheme
(require (lib "mred.ss" "mred"))
(define (play-sound-file file)
(play-sound file #f)
(void))
(define (background-play-sound-file file)
(play-sound file #t)
(void))
(provide play-sound-file
background-play-sound-file))