Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
dan_83
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
8 ms
·
1.
▲
by
dan_83
4y ago
Looks like a perfect case for a builder pattern, that way you can support sensible defaults in just about every language. default_pizza() .with_crust(Crust::Cheesy) .with_sauce(Sauce::Garlic) .add_topping(Topping::ExtraCheese) .cook() I