Sure, it is very small and dull. But, it is my first good code I've made. I normally, actually, havent really been making codes, so I started today and got this. When you press the down key it says something in english and when you push the up key it says the same thing, only in spanish! here is the code:
+ Code SnippetREM : the colors and SYNC
INK=200,100
REM : controls
downkey=1
upkey=1
DO
if downkey()=1 then PRINT "Hi. This is a simple text command!" else if upkey()=1 then PRINT "Hola. Esto es un comando simple del texto!"
LOOP
wait downkey()=1
wait upkey()=1
SYNC ON
NOTE: The right side of this is freaked up. Dont worry about it, though.