Discover

Topics

Neo-JVM

Neo-JVM APK

Neo-JVM APK

0.5 Freeneoexpert

Simulates a JVM

What's Neo-JVM APK?

Neo-JVM is a app for Android, It's developed by neoexpert author.
First released on google play in 7 years ago and latest version released in 5 years ago.
This app has 2.5K download times on Google play
This product is an app in Tools category. More infomartion of Neo-JVM on google play
Simulates a JVM on Android

Example code that does run after compilation to a class file:

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);
}
}

Sourcecode:


https://gitlab.com/neoexpert/jvm