6 lines
90 B
PowerShell
6 lines
90 B
PowerShell
Param(
|
|
[bool]$boolvariable
|
|
)
|
|
|
|
Write-Host $boolvariable.GetType()
|
|
Write-Host $boolvariable
|