Skip to content

Instantly share code, notes, and snippets.

@mhtmalpani
Created November 26, 2017 08:53
Show Gist options
  • Save mhtmalpani/34c8baaee689df914fe764e362956ebc to your computer and use it in GitHub Desktop.
Save mhtmalpani/34c8baaee689df914fe764e362956ebc to your computer and use it in GitHub Desktop.
Builder pattern: Main file
public class Main {
public static void main(String[] args) {
Subway subway = Subway.builder("Wheat", "Grilled")
.cheese("Mozzarella")
.onion()
.build();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment