Setting file ACLs with PowerShell part 4
...variables in PowerShell, which is a really cool feature unto itself, and one that I use all the time
While PowerShell doesn't support strong typing in the classic sense of a compiler, it does have a feature that allows you to constrain the type of a variable whenever it's assigned a value. Here's an example
a = 42 [Int32] $b = 42 $a = "this...
