左シフト

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

文法:
result = number shl amount

用例:
for n=1 to 8
    print 1 shl n
next