Difference between revisions of "Main Page"
Jump to navigation
Jump to search
Samerhijazi (talk | contribs) |
|||
| Line 4: | Line 4: | ||
$ echo Hello World | $ echo Hello World | ||
| + | |||
| + | <source lang="java"> | ||
| + | public class HelloWorldApp { | ||
| + | public static void main(String[] args) { | ||
| + | System.out.println("Hello World!"); // Prints the string to the console. | ||
| + | } | ||
| + | } | ||
| + | </source> | ||
== Internal-Links == | == Internal-Links == | ||
| Line 11: | Line 19: | ||
* https://wiki.archlinux.org/index.php/Help:Cheatsheet<br> | * https://wiki.archlinux.org/index.php/Help:Cheatsheet<br> | ||
* https://www.mediawiki.org/wiki/Manual:Skinning_Part_1 | * https://www.mediawiki.org/wiki/Manual:Skinning_Part_1 | ||
| + | * https://www.mediawiki.org/wiki/Extension:VisualEditor | ||
Revision as of 22:56, 10 April 2019
Welcome to My Wiki-Page your source for documentation on the web.
$ echo Hello World
public class HelloWorldApp {
public static void main(String[] args) {
System.out.println("Hello World!"); // Prints the string to the console.
}
}