1 REM A big brain
2 POKE 1, $0303, $0c10, $2020, $c0c0
3 POKE 2, $c0c0, $4020, $2018, $0703
4 COLOR $f0a2, $d062, $c052
5 CLS
9 LET X:0,Y:0
10 LET A:R%2+1
11 PRINT #A;
12 LET X:X+1
13 IF X=70 PRINT ""
14 IF X=70 LET X:0,Y:Y+1
15 IF Y<40 GOTO 10
20 DRAW 32, 32
21 LIST
22 END
1 REM Sierpinski's Triangle
2 LET N:32, X:0, Y:N-1
3 CLS
11 LET I:0, X:0
12 PRINT " ";
13 LET I:I+1
14 IF I<Y GOTO 12
16 PRINT #X&Y=0*$a+$20 " ";
17 LET X:X+1
18 IF X+Y<N GOTO 16
19 PRINT ""
29 LET Y:Y-1
30 IF Y GOTO 11
31 END
Should be working now, we don't have an Apple to test but if my understand of JS is correct, this should paste, regardless of ctrl or cmd :) Let us know!
1 REM This is a comment.
2 LET I:I+1, F:I%3=0, B:I%5=0
3 IF F PRINT "FIZZ";
4 IF B PRINT "BUZZ";
5 IF F+B=0 PRINT I;
6 PRINT ""
7 IF I<100 GOTO 2
8 END
← Return to tool
Comments
Log in with itch.io to leave a comment.
Beautiful~
How about a game of TicTacToe?
Can't copy/paste on MacOS...
Command + V just writes "v".
Should be working now, we don't have an Apple to test but if my understand of JS is correct, this should paste, regardless of ctrl or cmd :) Let us know!
Almost there!
It works but there's a bug still...
When I paste I get this:
Cheers for the help with this m8, I think it shouldn't inject a v anymore, wanna give it a shot?
Fixed!
Nice!