右シフト

二進数右シフトです。このコマンドは二進数形式の number を処理します。なお、 amount でビットのシフト量を指定します。

文法:
result = number shr amount

用例:
for n=1 to 8
    print 256 shr n
next