hello world and hello java
Writing your first program in java Courtesy: http://2.bp.blogspot.com/- Following the ritual of printing "hello world" to the system,let's get ready for our FIRST newbee java program. Before writing the program,we must figure out which text editor you want to use.You can use the traditional Notepad or an advance free text editor especially for programmers called Notepad++. Download link: notepad++download . You can use IDE like netbeans or eclipse but for learning basics of java language you have to choose a text editor. So....text editor done. Then make a directory in a Mydocuments named java projects. Here all your java projects resides. So....Choosing directory done. Then create your project "first program" inside the java projects folder. Create new file inside this folder name Hello_world.java. NOTE:Every java file must end with extension .java(Ex.Sample.java) and there must be no spaces between the name and it must start with a chara...