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