Simple renaming to camel case

This commit is contained in:
Markus Fleschutz
2023-03-01 10:52:37 +01:00
parent 1df42cc567
commit f98c0492a2
13 changed files with 40 additions and 40 deletions

View File

@ -19,9 +19,9 @@ try {
if ($Seconds -eq 0 ) { [int]$Seconds = read-host "Enter number of seconds" }
for ($i = $Seconds; $i -gt 0; $i--) {
clear-host
Clear-Host
./write-big "T-$i seconds"
start-sleep -s 1
Start-Sleep -seconds 1
}
"✔️ $Seconds seconds countdown finished"