未分類

PowerShell - 記号の意味 - 代入 (=)

Windows PowerShell で使用される代入 (=) の説明をします。

代入演算

このサンプルでは、変数 $a に数値を代入しています。

$a = 10
$a

-未分類