Posts Tagged ‘loop’

Loop 3 times times – Powershell

Wednesday, April 19th, 2017
for ($i=1; $i -le "3"; $i++)
{
"Loop"
}