Wrap text
Report abuse
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
[headius @ cnutter:~/projects/duby]
◆ bin/dubyc -e "a = 1; a; 1; puts a"
[headius @ cnutter:~/projects/duby]
◆ javap -c dash_e
Compiled from dash_e
public class dash_e extends java.lang.Object{
public static void main(java.lang.String[]);
Code:
0: iconst_1
1: istore_0
2: getstatic #12; //Field java/lang/System.out:Ljava/io/PrintStream;
5: iload_0
6: invokevirtual #18; //Method java/io/PrintStream.println:(I)V
9: return
}
|