Skip to content

Instantly share code, notes, and snippets.

@zarinfam
Created June 25, 2019 08:07
Show Gist options
  • Save zarinfam/3d66ea229121d9eeca6ff61ef6e4cf4e to your computer and use it in GitHub Desktop.
Save zarinfam/3d66ea229121d9eeca6ff61ef6e4cf4e to your computer and use it in GitHub Desktop.
Created with Copy to Gist
interface Empty<A> {
A empty();
static Empty<Integer> emptyInt(){
return () -> 0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment