powershell-es/test/PowerShellEditorServices.Test.Shared/Debugging/DebugTest.ps1
fwastring baa0056244
Some checks are pending
CI Tests / dotnet (push) Waiting to run
CI Tests / dotnet-1 (push) Waiting to run
CI Tests / dotnet-2 (push) Waiting to run
Emacs End-to-End Tests / ert (push) Waiting to run
Vim End-to-End Tests / themis (push) Waiting to run
initial
2026-02-17 13:06:31 +01:00

12 lines
No EOL
133 B
PowerShell

$i = 1
while ($i -le 500000)
{
$str = "Output $i"
Write-Host $str
$i = $i + 1
}
Write-Host "Done!"
Get-Date
Get-Host