We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 391f60b + 03b1d54 commit 3867a22Copy full SHA for 3867a22
content/language/call-c-from-java.yaml
@@ -38,7 +38,7 @@ modernCode: |-
38
var strlenSig = FunctionDescriptor.of(ValueLayout.JAVA_LONG, ValueLayout.ADDRESS);
39
var strlenMethod = Linker.nativeLinker() .downcallHandle(foreignFuncAddr, strlenSig);
40
var ret = (long) strlenMethod.invokeExact(arena.allocateFrom("Bambi"));
41
- IO.println("Return value " + ret); // 5
+ System.out.println("Return value " + ret); // 5
42
}
43
44
0 commit comments