Use APKPure App
Get Neo-JVM old version APK for Android
Neo-JVM
Simuliert eine JVM.
Zur Zeit funktioniert nur ein begrenzte Anzahl an op-codes. Dieses Programm ist OpenSource:
https://gitlab.com/neoexpert/jvm
Beispiel-Programm, das ausgeführt werden kann:
public class Main {
public static void main(String[] args) {
fak(10);
}
public static int fak(int i){
if(i<=0)
return 1;
return i*fak(i-1);
}
}
Last updated on Jan 13, 2019
Much more op-codes implemented.
"Hello World" program works now.
Przesłane przez
Bruno Octavio
Wymaga Androida
Android 4.0+
Kategoria
Raport
Neo-JVM
0.5 by neoexpert
Jan 13, 2019