(Actually, I suppose I could have copied that link in here in the first place....)
Anyway, ignore the little save file window, and go to your desktop. It should look a little like this:
Now right click on the desktop and create a new folder. Name it: 'Eclipse'. Now pull up the little save window and click 'OK.' Drag the little folder into the one you just made. Open it, and open the little folder inside it labeled 'Eclipse.' Your screen should now look like this:
Good. Now, click on 'eclipsec', and click: 'Extract all.' Make the sestination in the folder you made. Wait for 3 minutes or so, and open the folders. Click on the application 'Eclipse'. You now have it open!
2. Click on 'OK' when it creates a workspace. Your main window should now look like this:
Click on 'Workbench' on the top-right corner. Screen should now look like nya:
Click on the 'New' button's (at the top-left) arrow and click 'Java Project.' Name it whatever you please. Check 'Create seperate folders for sources and class files', under 'Project layout'. Then click 'Finish.' Collapse your project's folder so it looks like this:
Right click next to 'src', and go to 'new', then select 'class'. Name it something simple, like 'class'. Screen should now look like this:
Now, this part is important. Type exactly this into the program, so it looks like this:
public class Class {
/** * @param args */ public static void main (String[] args) {
}
Now, between the two brackets, type in:
System.out.println("Message.");
so it looks like this:
public class Class {
/** * @param args */ public static void main (String[] args) { System.out.println("Message"); }
Now add another bracket to the bottom, so it looks like this:
/** * @param args */ public static void main (String[] args) { System.out.println("Message"); }
}
Now click the little play button at the top. Look at the bottom, and you'll see your message in the console.
Yay! Please do this, it took me forever to write it! If you ask, I might post another lesson.
__________________
I don't suffer from insanity. I enjoy every minute of it.
"Life is a game, Order. And I'm winning." --Discord, "Order and Chaos".
cool! ill be sure to download it soon. (and just so you know, "nya" is the japanese word for "meow" so when you said "Click on 'Workbench' on the top-right corner. Screen should now look like nya" it sounded like "Click on 'Workbench' on the top-right corner. Screen should now look like cat noise" *trollface*)