added readme + renames

This commit is contained in:
dankeyy 2023-03-11 21:24:54 +02:00
parent 15252b4f8d
commit 9eb5206bc9
No known key found for this signature in database
GPG key ID: 9EBEF7DB1A70533D
4 changed files with 137 additions and 8 deletions

View file

@ -0,0 +1,12 @@
package javaSource;
public class Greeter {
static {
System.loadLibrary("interop");
}
public static native String sayHello(int num);
public static void main(String[] args) {
System.out.println(sayHello(420));
}
}