Created
January 27, 2012 16:27
-
-
Save arturaz/1689617 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
arturas@zeus:~/work/spacegame/server$ cat t.scala | |
object T { | |
def three = 3 | |
} | |
arturas@zeus:~/work/spacegame/server$ scalac t.scala | |
arturas@zeus:~/work/spacegame/server$ javap T.class | |
Compiled from "t.scala" | |
public final class T { | |
public static final int three(); | |
} | |
arturas@zeus:~/work/spacegame/server$ javap T$.class | |
Compiled from "t.scala" | |
public final class T$ implements scala.ScalaObject { | |
public static final T$ MODULE$; | |
public static {}; | |
public int three(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment