vgaup.testmodule.psm1
function Get-CountFrom1to4 { for ($i = 0; $i -lt 4; $i++) { Write-Output $($i + 1) } } function get-athrow { throw "This is thrown" } function test-overwrite{ return "This is test" } |
function Get-CountFrom1to4 { for ($i = 0; $i -lt 4; $i++) { Write-Output $($i + 1) } } function get-athrow { throw "This is thrown" } function test-overwrite{ return "This is test" } |