summaryrefslogtreecommitdiff
path: root/scalalib/test/resources/hello-java/app/src/Main.java
blob: 23ddd6799f7f5f0c36c28ce34b9f504645a01c66 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
package hello;

public class Main{
    public static String getMessage(String[] args){
        return Core.msg() + " " + args[0];
    }
    public static void main(String[] args){
        System.out.println(getMessage(args));
    }
}