Skip to content

Instantly share code, notes, and snippets.

@mhtmalpani
Created November 29, 2017 20:17
Show Gist options
  • Save mhtmalpani/779cb5781b5625cba153c7d984b57085 to your computer and use it in GitHub Desktop.
Save mhtmalpani/779cb5781b5625cba153c7d984b57085 to your computer and use it in GitHub Desktop.
public class Dog implements Animal {
@Override
public String makeNoise() {
return "Woof";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment