Update play-tetris-melody.ps1

This commit is contained in:
Markus Fleschutz
2021-08-18 09:57:39 +02:00
parent cd77e28e04
commit 1382a6f243
3 changed files with 17 additions and 1 deletions

View File

@ -1,3 +1,17 @@
<#
.SYNOPSIS
play-tetris-melody.ps1
.DESCRIPTION
Plays the Tetris melody
.EXAMPLE
PS> .\play-tetris-melody.ps1
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz
License: CC0
#>
[System.Console]::Beep(1320,500)
[System.Console]::Beep(990,250)
[System.Console]::Beep(1056,250)
@ -112,4 +126,4 @@ start-sleep -milliseconds 500
[System.Console]::Beep(660,500)
[System.Console]::Beep(880,1000)
[System.Console]::Beep(838,2000)
exit 0
exit 0