fix project

This commit is contained in:
Alexey Metlyakov
2021-03-14 17:09:18 +03:00
parent 5295976ea8
commit 6a9a5441f3
10 changed files with 90 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
package plaindoll;
public class Welcomer{
public String sayWelcome() {
return "Welcome home, good hunter. What is it your desire?";
}
public String sayFarewell() {
return "Farewell, good hunter. May you find your worth in waking world.";
}
}