Search found 4 matches
- Fri Apr 12, 2013 9:57 am
- Forum: BASIC programs
- Topic: Spirograph
- Replies: 4
- Views: 6387
Re: Spirograph
Very Nice indeed, thank You Henko for posting. I made a small twist on speed and color, hope others will like it as well: option base 1 option angle degrees randomize graphics fill color 0,0,0 maxx=screen_width() maxy=screen_height() cx=maxx/2 cy=maxy/2 bigr=300 omega=10 dt=1 P=0.1 gosub btns random...
- Fri Apr 12, 2013 9:08 am
- Forum: BASIC docs & books
- Topic: more sample functions
- Replies: 5
- Views: 7475
Re: more sample functions
Many Thanks Dalede for Your replies & posts.
Elchoud
Elchoud
- Sun Jan 20, 2013 4:55 am
- Forum: BASIC programs
- Topic: Sample string functions
- Replies: 7
- Views: 7183
Re: Sample string functions
Dalede, Thank You for Posting this, I was looking for it
- Sun Jan 20, 2013 4:39 am
- Forum: BASIC programs
- Topic: While command
- Replies: 3
- Views: 4011
Re: While command
I prefer it to be like this:
A=0
DO:
PRINT A
A=A+1
IF A < 6 THEN DO
..... and the program continues
A=0
DO:
PRINT A
A=A+1
IF A < 6 THEN DO
..... and the program continues