NATJ
1 program
Added 2025-10-22T12:19:18Z
Model: openai/gpt-4o-miniTemp: 0.4
Evidence
Report issue
View issues
Aliases: —
Provenance: commit d977105019 · authored 2025-10-22T14:19:18+02:00 · model openai/gpt-4o-mini
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Simple NATJ Example
Provenance: commit d977105019 · authored 2025-10-22T14:19:18+02:00 · model openai/gpt-4o-mini · Temp 0.4
import natj.general.NatJ;
import natj.objc.ObjC;
import natj.objc.ann.Selector;
public class Main {
public static void main(String[] args) {
NatJ.register();
System.out.println("Hello, NATJ!");
}
@Selector("exampleMethod:")
public static void exampleMethod(String input) {
System.out.println("Input: " + input);
}
}