--- title: "The BIN Function on the TS2068" type: "article" slug: "the-bin-function-on-the-ts2068" url: "http://localhost/article/the-bin-function-on-the-ts2068/" markdown_url: "http://localhost/article/the-bin-function-on-the-ts2068.md" published_at: "2026-03-13T23:37:50+00:00" modified_at: "2026-03-13T23:37:50+00:00" featured_image: url: "http://localhost/wp-content/uploads/2022/04/20230809-041332.jpg" excerpt: "Short tip explaining the TS2068's BIN function for converting binary notation to decimal in BASIC (e.g., PRINT BIN 1001 displays 9). Notes that variables cannot be used as arguments — only literal sequences of 1s and 0s — and the maximum value is 65535 (BIN 1111111111111111). Shows that all arithmetic operations including powers and roots…" category: - name: "Timelinez" slug: "timelinez" taxonomy: "category" url: "http://localhost/category/periodicals/timelinez/" post_tag: - name: "BASIC (programming language)" slug: "basic-programming-language" taxonomy: "post_tag" url: "http://localhost/tag/basic-programming-language/" - name: "TS 2068" slug: "ts2068" taxonomy: "post_tag" url: "http://localhost/tag/ts2068/" model: - name: "Timex/Sinclair 2068" slug: "ts-2068" taxonomy: "model" url: "http://localhost/model/ts-2068/" indiv: - name: "Susan Hiatt" slug: "susan-hiatt" taxonomy: "indiv" url: "http://localhost/indiv/susan-hiatt/" publication_r: id: 21571 title: "Timelinez" type: "periodical" url: "http://localhost/periodical/timelinez/" authors_r: - name: "Susan Hiatt" slug: "susan-hiatt" taxonomy: "indiv" url: "http://localhost/indiv/susan-hiatt/" volume: "2" issue: "9" issues_articles: - id: 38807 title: "Timelinez v2 n9" type: "issue" url: "http://localhost/issue/timelinez-v2-n9/" pages: "4" pubdate: "September 1984" archive_link: false --- # The BIN Function on the TS2068 Short tip explaining the TS2068’s BIN function for converting binary notation to decimal in BASIC (e.g., PRINT BIN 1001 displays 9). Notes that variables cannot be used as arguments — only literal sequences of 1s and 0s — and the maximum value is 65535 (BIN 1111111111111111). Shows that all arithmetic operations including powers and roots work with the BIN function, making it useful for binary arithmetic learning.