--- title: "2068 Test" id: 50657 type: "product" slug: "2068-test" url: "http://localhost/product/2068-test/" markdown_url: "http://localhost/product/2068-test.md" published_at: "2023-06-25T08:44:27+00:00" modified_at: "2026-03-22T13:24:08+00:00" author: "David Anderson" featured_image: url: "http://localhost/wp-content/uploads/2022/04/20230809-041332.jpg" excerpt: "Short program to demonstrate the character set, colors and graphics. 5 INK 0: PAPER 7: BORDER 7: CLS 10 FOR c=0 TO 7 20 FOR i=9 TO 12 30 PRINT BRIGHT 1; PAPER c;AT i,c*4;c 60 NEXT c 100 PRINT AT 13,0 110 FOR v=0 TO 1 120 FOR h=33 TO 143: PRINT INVERSE v;CHR$…" category: - name: "Utilities" slug: "utilities" taxonomy: "category" url: "http://localhost/category/software/utilities/" post_tag: - name: "Downloadable" slug: "downloadable" taxonomy: "post_tag" url: "http://localhost/tag/downloadable/" - 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/" genre: - name: "Software" slug: "software" taxonomy: "genre" url: "http://localhost/type/software/" - name: "Utility" slug: "utility" taxonomy: "genre" url: "http://localhost/type/utility/" rarity: "Uncommon" related_products: - id: 50598 title: "2068 Test" type: "computer_media" url: "http://localhost/computer_media/2068-test/" --- # 2068 Test Short program to demonstrate the character set, colors and graphics. ``` 5 INK 0: PAPER 7: BORDER 7: CLS 10 FOR c=0 TO 7 20 FOR i=9 TO 12 30 PRINT BRIGHT 1; PAPER c;AT i,c*4;c 60 NEXT c 100 PRINT AT 13,0 110 FOR v=0 TO 1 120 FOR h=33 TO 143: PRINT INVERSE v;CHR$ h;: NEXT h 130 PRINT 140 NEXT v 200 LET yc=143 210 CIRCLE 108,yc,10: CIRCLE 128,yc,15: CIRCLE 148,yc,10 220 FOR x=0 TO 12 STEP 3 230 PLOT x,175: DRAW 0,-63 240 PLOT x+243,175: DRAW 0,-63 250 NEXT x 260 FOR y=112 TO 124 STEP 3 270 PLOT 0,y: DRAW 255,0 280 PLOT 0,y+51: DRAW 255,0 290 NEXT y ```