Wednesday, February 11, 2015

First Post

So here we go...again....

First post about my life trying to learn computer science. It has always been an interest of mine to learn cs. I graduated with a degree in political science and realized that a degree in that really didn't lead me to a job that would provide for, not only me, but for my girlfriend as well.

I made my first program for those who are just starting out. It is very simple. I used JGRASP to create this program. For some reason my text editor could not create the program I wanted...here it is:

I made my compiler run "I Love Tottenham." They are my favorite soccer team in the world. You need to make sure all the punctuation is correct. The compiler will yell at you if you didn't. I will go into more depth in programming later.

public class firstProgram
{
  public static void main(String[] args) //your framework
  {
    System.out.println("I Love Tottenham."); //this will be   displayed on the screen
  }
}

No comments:

Post a Comment