summaryrefslogtreecommitdiffstatshomepage
path: root/tests/jni/system_out.py
blob: 86c4b9e1121634bf11c43a382e46907fa671ee7a (plain) (blame)
1
2
3
4
5
6
7
8
try:
    import jni
    System = jni.cls("java/lang/System")
except:
    print("SKIP")
    raise SystemExit

System.out.println("Hello, Java!")