Programming Fundamentals/Introduction/Java: Difference between revisions

From Wikiversity
Jump to navigation Jump to search
Content deleted Content added
m See Also
Line 10: Line 10:
== Try It ==
== Try It ==
* [https://repl.it/EJlQ/6 repl.it]
* [https://repl.it/EJlQ/6 repl.it]
* [https://www.tutorialspoint.com/compile_java_online.php TutorialsPoint]


== See Also ==
== See Also ==

Revision as of 17:48, 30 October 2016

hello.java

class Main {
  	public static void main(String[] args) {
		System.out.println("Hello world!");
	}
}

Try It

See Also