Created
July 5, 2015 07:55
-
-
Save koert/642ea7d74d61441bde3d to your computer and use it in GitHub Desktop.
Example repository that produces a greeting
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Example repository. | |
| * @author Koert Zeilstra | |
| */ | |
| public class HelloRepository { | |
| /** | |
| * @return Example greeting. | |
| */ | |
| public String getGreeting(String name) { | |
| return "Hello world " + name; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment