/**
* Die HelloWorldApplication Klasse implementiert
* eine Applikation, ein eigenstaendiges Programm,
* das "Hello World!" auf der Standardausgabe ausgibt.
*/
class HelloWorldApplication {
public static void main(String[] args) {
// Ausgabe des strings "Hello World"
System.out.println("Hello World!");
}
}
durch OOP mit Java
1 Comment(s)
Comments RSS TrackBack Identifier URI
Leave a comment

Hi, this is a comment.
To delete a comment, just log in, and view the posts’ comments, there you will have the option to edit or delete them.