BlackMac
Member
I have ported SmallBasic to the GP2X for everyone who likes BASIC (like I do)
You can get it here:
BlackMacs GP2X Stuff
Or in the archive!
You can get it here:
BlackMacs GP2X Stuff
Or in the archive!
hehe me too (well basic for TI-84 plus )TelcoLou posted on Feb 23 2006 at 10:41 PM said:Nice! I'll check it out later .... I got my feet wet with TI-99/4A BASIC so long ago ...
aapje89 posted on Feb 23 2006 at 10:26 PM said:hehe me too (well basic for TI-84 plus )TelcoLou posted on Feb 23 2006 at 10:41 PM said:Nice! I'll check it out later .... I got my feet wet with TI-99/4A BASIC so long ago ...
devestation posted on Feb 23 2006 at 08:28 PM said:Any Java virtual machines in sight?
rokdcasbah posted on Feb 23 2006 at 10:02 PM said:devestation posted on Feb 23 2006 at 08:28 PM said:Any Java virtual machines in sight?
yes. sorry to hijack the thread, but i was also wondering if anyone knew what the current state of java was? i sort of remember someone talking about porting an entire dev environment to the 2x and then using that to compile a java vm? or something?
but forget about a vm, does anyone think there will ever be a way to compile j2me apps for the gp2x? i know that there's some collaboration going on between the java folks and the ARM folks...but anyway is anyone attempting this?
also hooray for BASIC. my first language, like many others here.
class myfirstjavaprog
{
public static void main(String args[])
{
System.out.println("Hello World!");
}
}
int main()
{
printf("Hello World!\n");
return 0;
}
That's an awful example, not least because you forgot to #include <stdio.h>BBTroll posted on Feb 24 2006 at 08:26 AM said:Moving from Java to C is easy.
Java is too damn wordy for small projects.
Code:class myfirstjavaprog { public static void main(String args[]) { System.out.println("Hello World!"); } }
Why all the classes? I just want to write hello.
Code:int main() { printf("Hello World!\n"); return 0; }
Just remember free()/delete everything that you malloc()/new. There is no Garbage Collector to clean your but for you(that is a good thing for small systems).
BenScar posted on Feb 24 2006 at 08:55 AM said:msgbox "Hello World"
No need for anything more.... Working in VBScript, VB6, VB.Net (.NET Frameworks v1, v1.1 and v2)