Too many instructions to learn, Brainfuck is better. This is what "Hello World" would look like:OMG that's amazing. I need to learn how to program in Befunge now.
++++++++++[>+++++++>++++++++++>+++>+<<<<-]>++.>+.+++++++..+++.>++.<<+++++++++++++++.>.+++.------.--------.>+.>.
+++++ +++++ initialize counter (cell #0) to 10
[ use loop to set the next four cells to 70/100/30/10
> +++++ ++ add 7 to cell #1
> +++++ +++++ add 10 to cell #2
> +++ add 3 to cell #3
> + add 1 to cell #4
<<<< - decrement counter (cell #0)
]
> ++ . print 'H'
> + . print 'e'
+++++ ++ . print 'l'
. print 'l'
+++ . print 'o'
> ++ . print ' '
<< +++++ +++++ +++++ . print 'W'
> . print 'o'
+++ . print 'r'
----- - . print 'l'
----- --- . print 'd'
> + . print '!'
> . print '\n'
More info available at the Official Site.
Saving and sharing your programs sounds pretty sweet. Writing code on a touchscreen with a stylus...not so much. Still probably won't be able to resist buying it though.
Saving and sharing your programs sounds pretty sweet. Writing code on a touchscreen with a stylus...not so much. Still probably won't be able to resist buying it though.
Battle & Get! Pokémon Typing DS (Japanese title)
It was released April 21, 2011. On June 22, 2012, Nintendo of Europe announced the software would launch in Europe in September 2012.
Learn with Pokémon: Typing Adventure (European title)
![]()
![]()
Technically you were supposed to use GOSUB/RETURN for functions and kludge up some naming convention for handling return values and parameters since all your variables were global.It did not support functions. All it had was GOTO. I ended up becoming sorely disappointed when I learned other languages didn't support GOTO or highly discouraged it. Haha. I still am a little.![]()
Are they going to release those magazines that have BASIC programs all typed out inside and you input it all manually and in the end it doesn't work anyway? I coveted those as a kid.
I'm not sure what book that was, but here is a link to a classic. IIRC it had the infamous Star Trek tactical war game that was roughly a bazillion pages:I remember getting so excited about a BASIC book I checked out from the school library. This long-ass program was supposed to input daily weather data, and then make weather predictions based upon that input.
Didn't work even a little bit.
2) It -might- be possible to write an entire BASIC program on your computer in a text editor and then convert it to binary or QR code. Maybe.
The second point seems iffy, but ...
That sure would be helpful if it's true. Typing out code on a touch screen sounds pretty rough.
When you type the first letter of a command, a list of commands starting with that letter show up and you can just click the right one. But it'd still probably be easier if we could use the computer.
Someone needs to make a PTC -> Text convertor.
Prolog! I'd rather this be Java or C#. Object oriented programming is pretty easy to wrap your head around.
Probably easier to play with too. Tap an object, choose an attribute or function, etc.
@gust_notch Can you make a プチコン program on PC and change it back to a .ptc file? I would love to do this when it comes to the USA.![]()
@UncleSporky Yes we can! For editing PTC files, "PTCUtilites" may be useful. http://micutil.com/ptcutilities/t … ‪#petitcom
@UncleSporky FYI, I wrote "PetitEditor", which is able to generate QR code from text on the web browsers. http://www2.u-netsurf.ne.jp/~ozawa/petitco … ‪#petitcom
That's crazy. When I took my intro programming course in HS, they started out with C++. Then the next class was Java.
What is BASIC used in nowadays? Or is it at least good for learning to get a programming foundation? Not sure, I got out of the programming learning game quite awhile ago.
Hey, UncleSporky... what actual language/usage changes from tradtional BASIC did you note? I had the impression that you needed to use == instead of = and != instead of <> ... is that correct, and was there anything else of interest to note?
It seems silly to change that for BASIC, though...That is correct, like many modern languages it uses == and != instead of = and <>.
Sounds like Blassic, which I've been using for a few years now..Another change over traditional BASIC is that while this version still has line numbers, they are not important. I believe you can insert new lines and it will re-number the rest of the program. GOTO/GOSUB work via labels only. You type @LABEL1 on one line, and later GOTO @LABEL1.
Couldn't you just use the INT command on the results?When you perform calculations that could result in decimal numbers and you only really need the integer part (such as for pixel coordinates), they recommend using FLOOR to round it off because of cumulative errors in floating point operations.
Couldn't you just use the INT command on the results?
Has anyone asked Gamebridge about a PAL release?
I really should start spamming 'em with requests. I need this program!
No INT command? Random number generation is going to be fun...
Too many instructions to learn, Brainfuck is better. This is what "Hello World" would look like:
Code:++++++++++[>+++++++>++++++++++>+++>+<<<<-]>++.>+.+++++++..+++.>++.<<+++++++++++++++.>.+++.------.--------.>+.>.