Test Scripts

suggest change

The simple, yet powerful use of the ISE is e.g. writing code in the top section (with intuitive syntax coloring) and run the code by simply marking it and hitting the F8 key.

function Get-Sum
{
    foreach ($i in $Input)
    {$Sum += $i}
    $Sum

1..10 | Get-Sum

#output
55

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents