--- title: "Programming Tips" type: "article" slug: "programming-tips-2" url: "http://localhost/article/programming-tips-2/" markdown_url: "http://localhost/article/programming-tips-2.md" published_at: "2022-10-07T12:26:26+00:00" modified_at: "2026-07-28T00:40:31+00:00" featured_image: url: "http://localhost/wp-content/uploads/2022/04/20230809-041332.jpg" excerpt: "Here is a cute routine to show your friends. PLOT 88,28: DRAW 100,100,4100 Did you know that you can use DRAW command with a radius variable? Here is another cute routine from Dale Barnard. 10 LET z=1 20 FOR y=1 TO 44 30 CIRCLE z,87,y 40 CIRCLE 268-z,87,y 50 CIRCLE 128,z,y 60 CIRCLE 128,174,z,y 70…" category: - name: "LISTing Newsletter" slug: "listing-newsletter" taxonomy: "category" url: "http://localhost/category/periodicals/listing-newsletter/" post_tag: - name: "Best of Timex/Sinclair 2068 Articles and Documents" slug: "ts2068best" taxonomy: "post_tag" url: "http://localhost/tag/ts2068best/" - name: "Reference" slug: "reference" taxonomy: "post_tag" url: "http://localhost/tag/reference/" - name: "TS 2068" slug: "ts2068" taxonomy: "post_tag" url: "http://localhost/tag/ts2068/" - name: "Type-in program" slug: "type-in-program" taxonomy: "post_tag" url: "http://localhost/tag/type-in-program/" model: - name: "Timex/Sinclair 2068" slug: "ts-2068" taxonomy: "model" url: "http://localhost/model/ts-2068/" publication_r: id: 38992 title: "LISTing Newsletter" type: "periodical" url: "http://localhost/periodical/listing-newsletter/" issues_articles: - id: 40213 title: "LISTing Newsletter October 1992" type: "issue" url: "http://localhost/issue/listing-newsletter-october-1992/" pages: "9" pubdate: "October 1992" archive_link: false --- # Programming Tips Here is a cute routine to show your friends. ``` PLOT 88,28: DRAW 100,100,4100 ``` Did you know that you can use DRAW command with a radius variable? *** Here is another cute routine from Dale Barnard. ``` 10 LET z=1 20 FOR y=1 TO 44 30 CIRCLE z,87,y 40 CIRCLE 268-z,87,y 50 CIRCLE 128,z,y 60 CIRCLE 128,174,z,y 70 NEXT y ```