(For those that scan read posts, please can you read all of it as it contains stuff to answer my question all the way through)
Well about 3 weeks ago I decided to learn a programming language.
I started off with C++ for a week but after reading some articles I found out that Java was going to be easier for someone that has never programmed before (I only know HTML & CSS).
So for 2 weeks I've been learning Java but I have found it quite hard. I get the jist of it but it does baffle me at times trying to do even the simplest of things.
CODE
public class Demo {
public static void main(String []args) {
int myFirstNumber = 1;
int mySecondNumber = 5;
if(myFirstNumber == mySecondNumber) {
System.out.println("The numbers match!");
}
else {
System.out.println("Unfortunately the numbers don't match");
}
}
}
The above Java code I can easily manage however that is about as far as it goes. So although the above is simple I don't understand anything more complex than that.
So I was wondering...
Should I stick with Java and just keep re-reading the same tutorial/s until I understand it or should I switch to ruby which at a quick first glance seems simple?
OR, should I change to ActionScript as I do have Adobe CS3 Flash, it's just I'm not good in any aspect of Flash from AS to drawing.
If it makes any difference, I want to be able to make online games with it.
P.S. Please don't say a game will take you ages to make and I'm setting my goals far too high. That's my goal and I want to complete it - I just don't know down which path to go.
This post has been edited by Kingbradley6: 16 Aug, 2008 - 07:07 AM