What is the native keyword in Java for?

While playing this puzzle (It’s a Java keyword trivia game), I came across the native keyword. What is the native keyword in Java used for? 10 s 10 Minimal runnable example Main.java public class Main { public native int square(int i); public static void main(String[] args) { System.loadLibrary(“Main”); System.out.println(new Main().square(2)); } } Main.c #include <jni.h> … Read more