Skip to content

Instantly share code, notes, and snippets.

@harryhan24
Created June 1, 2018 16:41
Show Gist options
  • Select an option

  • Save harryhan24/19d8f1a4484054807d188ddcbac690aa to your computer and use it in GitHub Desktop.

Select an option

Save harryhan24/19d8f1a4484054807d188ddcbac690aa to your computer and use it in GitHub Desktop.
public final void print(@NotNull Function2 body) {
Intrinsics.checkParameterIsNotNull(body, "body");
Object result = body.invoke(1,2); //result 값은 1
System.out.println(result);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment