Skip to content

Instantly share code, notes, and snippets.

@tpolecat
Created April 8, 2013 20:22
Show Gist options
  • Save tpolecat/5340132 to your computer and use it in GitHub Desktop.
Save tpolecat/5340132 to your computer and use it in GitHub Desktop.
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