Skip to content

Instantly share code, notes, and snippets.

@mcsee
Last active August 22, 2023 02:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mcsee/62bc32206f71d61c1d0b63dcf87f8b80 to your computer and use it in GitHub Desktop.
Save mcsee/62bc32206f71d61c1d0b63dcf87f8b80 to your computer and use it in GitHub Desktop.
class Candidate {
void printJobAddress(Job job) {
System.out.println("This is your position address");
System.out.println(job.address().street());
System.out.println(job.address().city());
System.out.println(job.address().ZipCode());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment