When you’re developing code interactively how often do you set a variable and then display it to test the result? You can do that in one go using variable squeezing.
Normally you’d do:
PS> $test = 1
PS> $test
1
Set the variable and display the… Read the full text.