Skip to content

Instantly share code, notes, and snippets.

@danielgospodinow
Last active August 5, 2019 11:18
Show Gist options
  • Save danielgospodinow/fbcc37ea1cfa1dfe16af333e3d0a1408 to your computer and use it in GitHub Desktop.
Save danielgospodinow/fbcc37ea1cfa1dfe16af333e3d0a1408 to your computer and use it in GitHub Desktop.
Calcualtor Provider's Interface
public interface Calculator {
int add(int a, int b);
int multiply(int a, int b);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment