RosettaCodeData/Task/Variables/PowerShell/variables-5.ps1

6 lines
277 B
PowerShell
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
Get-Variable # retrieves the value of a variable
New-Variable # creates a new variable
Set-Variable # sets the value of a variable
Clear-Variable # deletes the value of a variable, but not the variable itself
Remove-Variable # deletes a variable completely