
This adds the language levels, teachpacks, and documentation for the textbook "Die Macht der Abstraktion". svn: r14019
14 lines
279 B
Scheme
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))
|