メインコンテンツまでスキップ
バージョン:25.2

binary

  • keyword for number formatting — as binary

  • new in 2.06

  • a variable’s format may be set to "binary" to cause it to display in binary

  • Examples: +

    put (9+4) as binary --> 0b1101
    put 13 into codeNum
    set codeNum's format to "binary"
    put codeNum --> 0b1101
    add 3 to codeNum
    put codeNum --> 0b10000