Created
June 25, 2015 19:15
-
-
Save JFFail/601aeb2ce78f12a04f75 to your computer and use it in GitHub Desktop.
PowerShell Reference Example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Lulz | |
{ | |
param([REF]$Stuff) | |
$Stuff.Value *= 5 | |
} | |
$nonsense = 5 | |
Lulz -Stuff ([REF]$nonsense) | |
Write-Host $nonsense |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment