a::documents MORE
CLOSE

Java is a class-based, object-oriented programming language that is designed to have as few implementation dependencies as possible. It is a general-purpose programming language intended to let application developers write once, run anywhere, meaning that compiled Java code can run on all platforms that support Java without the need for recompilation. (Source: wikipedia)


MORE INFORMATION

HOW TO OPEN THIS FILE?

.java

public class Main {
static void myMethod() {
System.out.println("This works!");
}

public static void main(String[] args) {
myMethod();
}
}

CLICK TO COPY TO CLICKBOARD