shl.bmx 128 B

123456789
  1. Rem
  2. Shl is a binary operator that performs the shift to left function.
  3. End Rem
  4. b=1
  5. for i=1 to 32
  6. print bin(b)
  7. b=b shl 1
  8. next