TOP SECRET HACK
By: a guest | Mar 19th, 2010 | Syntax:
Java | Size: 0.45 KB | Hits: 45 | Expires: Never
public class HelloWorld {
public static void main(String[] args) {
String a="SomeText";
int b=52;
float f=21.1F;
a="SomeText";
System.out.println(b);
}
}
//Bytecode
ldc "SomeText"
astore_1
bipush 52
istore_2
ldc 21.1
fstore_3
ldc "SomeText"
astore_1
getstatic java/lang/System/out Ljava/io/PrintStream;
iload_2
invokevirtual java/io/PrintStream/println(I)V
return