8 lines
84 B
PowerShell
8 lines
84 B
PowerShell
function Invoke-ModuleTask {
|
|
param(
|
|
[int]$Count
|
|
)
|
|
|
|
$Count + 1
|
|
}
|