L
lol2232
Guest
I was wondering what a good programing language to learn (for programming on the 2x) is? like C.... Fenix (is fenix quick and easy?)....
-Thanks
-Thanks
2) I have done partially and I am just starting off with 1).Yono posted on Jul 28 2006 at 06:30 PM said:1) C --> C++ --> SDL
2) Fenix
3) Python
4) Allegro
Any of those seem like good choices.
smx posted on Jul 28 2006 at 03:49 PM said:You can also use directly ARM assembly , here 3 pdf:
http://www.nalanda.nitc.ac.in/industry/app...truct/index.htm
Catches him as his VB code was so slow that the lower level languages' loops caught up with him and abolished it.TelcoLou posted on Jul 28 2006 at 08:53 PM said:Visual Basic
* Runs away like a chicken thief *
sam fisher posted on Jul 28 2006 at 03:54 PM said:Catches him as his VB code was so slow that the lower level languages' loops caught up with him and abolished it.TelcoLou posted on Jul 28 2006 at 08:53 PM said:Visual Basic
* Runs away like a chicken thief *
TelcoLou posted on Jul 28 2006 at 09:09 PM said:sam fisher posted on Jul 28 2006 at 03:54 PM said:Catches him as his VB code was so slow that the lower level languages' loops caught up with him and abolished it.TelcoLou posted on Jul 28 2006 at 08:53 PM said:Visual Basic
* Runs away like a chicken thief *
10 A$="Laughs his ass off"
20 for I = 1 to 1000³
30 print A$
40 next I
TI-99/4A Basic for the victory!
#include <stdio.h>
main()
{
int i;
char a[] = "Laughs his ass off";
for(i = 0; i <= 1000; i ++)
{
printf("%s\n", a);
}
}
I don't even know what that is? It doesn't look very assembler'ish though. Is it assembler of some sort?Shikaku posted on Jul 28 2006 at 10:00 PM said:section .data
text db "LAUGHING MY ASS OFF",10,0
section .text
main:
enter 0,0
mov ecx,1000
top:
push text
call printf
add esp,4
dec ecx
cmp ecx,0
jne top
leave
ret
;omfg I had to debug this... I'm a bit rusty XD
I'd say C then C++ is easiest...DaveN posted on Jul 29 2006 at 03:35 AM said:I'd suggest you to learn c++ first, then with the sdl libraries. I tried the other things before, they aren't really so much easier, but slower. If you'd like to learn coding, then do it real.
Just my suggestions, I by myself started with actionscript in flash for a month, then basic for half a month, python half a month and now I'm finally happy with c++.