Skip to content

Instantly share code, notes, and snippets.

@zcox
Created August 7, 2012 17:18
Show Gist options
  • Select an option

  • Save zcox/3287436 to your computer and use it in GitHub Desktop.

Select an option

Save zcox/3287436 to your computer and use it in GitHub Desktop.
Java8 default methods syntax proposal
public interface Foo {
public String bar() {
return "bar";
}
public String baz();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment