summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/codebox/hellojava.java
blob: 1cf8d2e9bc76d0378e31ac467473fcf7e7f9ddc3 (plain)
1
2
3
4
5
public class HelloWorld {
    public static void main(String[] args){
        System.out.println("Hello World!");
    }
}