Skip to content

Instantly share code, notes, and snippets.

@MateuszNad
Created March 9, 2020 17:59
Show Gist options
  • Save MateuszNad/f0ecc64d0199eea85edfe94d95e281a4 to your computer and use it in GitHub Desktop.
Save MateuszNad/f0ecc64d0199eea85edfe94d95e281a4 to your computer and use it in GitHub Desktop.
# Example
$SomeValue ??= 100
# taki sam efekt w PowerShell 5.1
if(-not $SomeValue)
{
$SomeValue = 100
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment