import java.util.Scanner;
public class Sample {
public static void main(String []args){
Scanner scan = new Scanner(System.in);
int intAge;
intAge = scan.nextInt();
System.out.println("Your age is " + lol + " years old.");
}
}
Is there any way to convert this code into jasmin assembly code? I'm having a hard time to find a way to do it. Answers would be appreciated.
http://classfileanalyzer.javaseiten.de/
One person project, very old (last update 2009),
But according to wikipedia jasmin's last update is 2010.
I tested it with a simple file it worked.
EDIT : I'am showing the usage and output of sample for completeness of answer. (
lol
is replaced withintAge
in the code above)