Created
April 8, 2013 20:22
-
-
Save tpolecat/5340132 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
class Curry { | |
def foo(n:Int, s:String) = false | |
def bar(n:Int)(s:String) = false | |
} | |
becomes | |
cookie:crap rnorris$ javap -classpath bin Curry | |
Compiled from "Curry.scala" | |
public class Curry extends java.lang.Object{ | |
public boolean foo(int, java.lang.String); | |
public boolean bar(int, java.lang.String); | |
public Curry(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment