[Ruby] インクリメント(Increment)は"++"ではなく"+=1"
Ruby でのインクリメント(Increment)は”++“ではなく”+=1”と自己代入でするみたいです。
$i = 0; $i++;
i = 0 i += 1
以上です。