Skip to content

Instantly share code, notes, and snippets.

@BMU-Verlag
Last active July 9, 2020 06:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BMU-Verlag/6c9a9608ed6ecdef0f5a01592dce4d7f to your computer and use it in GitHub Desktop.
Save BMU-Verlag/6c9a9608ed6ecdef0f5a01592dce4d7f to your computer and use it in GitHub Desktop.
for(i = 0; i < ausgabe.length() - 1; i++){
if(ausgabe[i] == '.'){
Beep(600, 500);
}
else if(ausgabe[i] == '-'){
Beep(600, 1000);
}
else if(ausgabe[i] == ' '){
Sleep(1000);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment