3 lines
68 B
PowerShell
3 lines
68 B
PowerShell
|
|
$IsOdd = [boolean]( $N -band 1 )
|
||
|
|
$IsEven = [boolean]( $N -band 0 )
|