Is it possible to write primitive function in java? Something like this:
void x() {
System.out.printf("ok");
}
Like this in javascript:
function x() {
console.log('ok');
}
Is it possible to write primitive function in java? Something like this:
void x() {
System.out.printf("ok");
}
Like this in javascript:
function x() {
console.log('ok');
}