SNDSTOP
Root / Documentation / [.]
Created:
Stop all audio playing.
* Syntax
```
SNDSTOP
```
* Examples
```
'play a song
BGMPLAY 0
'play lots of sound effects
FOR I%=1 TO 10
BEEP RND(10)
NEXT I%
'stop (after waiting so you can hear it for the example :))
WAIT 5
SNDSTOP
```