Created
October 17, 2015 11:37
-
-
Save schauder/6de2af3ec3a3f1bad3de to your computer and use it in GitHub Desktop.
lemonade stand
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://www.calormen.com/jsbasic/ | |
10 GR | |
19 rem Himmel | |
20 color=14 | |
30 for y = 0 to 20 | |
40 HLIN 0,39 at y | |
50 next y | |
59 rem Wiese | |
60 color=12 | |
70 for y=21 to 39 | |
80 hlin 0,39 at y | |
90 next y | |
99 rem Limonadenstand | |
100 color=8 | |
101 for y=10 to 20 | |
110 hlin 12,26 at y | |
120 next y | |
119 rem Sonne | |
220 COLOR=13 | |
230 plot 1,2 | |
240 plot 1,3 | |
250 plot 1,4 | |
260 PLOT 2,1 | |
270 plot 2,2 | |
280 plot 2,3 | |
290 plot 2,4 | |
300 plot 2,5 | |
310 plot 3,1 | |
320 plot 3,2 | |
330 plot 3,3 | |
340 plot 3,4 | |
350 plot 3,5 | |
360 plot 4,2 | |
370 plot 4,3 | |
380 plot 4,4 | |
390 plot |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment