Skip to content

Instantly share code, notes, and snippets.

@tnishada
Created April 24, 2020 10:25
Show Gist options
  • Save tnishada/6ebca7a160f3f11bc9e7cd552bbb704f to your computer and use it in GitHub Desktop.
Save tnishada/6ebca7a160f3f11bc9e7cd552bbb704f to your computer and use it in GitHub Desktop.
public class Robot {
private String name = "Casper";
public String greetUser(String name ){
System.out.println("Inside greetUser method . . . ");
return "Hello " + name + "! I am " + this.name;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment