プロセルピナ
Top Internet
Mail
Private
Proxy
Capture
Device
Download Config
and
Words
Online
Help
Online
Home
[BACK]
Top > Proserpine Macro > Commands > culc

 
 culcコマンド
Macro Top | Variables | Constants | Commands | Ex-Commands  


 

概要


整数変数の値を代入演算します。
以下の 複合代入演算子(compound assignment) をサポートします。

  +=
  -=
  *=
  /=
  ++    (+=1 と同じ)
  --    (-=1 と同じ)
  <<=
  >>=
  |=    (bit OR)
  &=    (bit AND)
  ^=    (bit XOR・排他的論理和)

 

記述例


culc: int[1]++

culc: int[1]+=123

culc: int[1]*=10




【コピペで確認】 上記のサンプルコードは メモ帳モードで開いたテキストフォームにコピー&ペーストして、 テストモード実行で 動作確認することができます。

実行結果は次のようになります。



[BACK]
プロセルピナ