pnutzh4x0r@lemmy.ndlug.org to Programming@programming.devEnglish · 2 years agoLinear code is more readableblog.separateconcerns.comexternal-linkmessage-square46linkfedilinkarrow-up1124arrow-down114 cross-posted to: hackernews@derp.foo
arrow-up1110arrow-down1external-linkLinear code is more readableblog.separateconcerns.compnutzh4x0r@lemmy.ndlug.org to Programming@programming.devEnglish · 2 years agomessage-square46linkfedilink cross-posted to: hackernews@derp.foo
minus-squarerobinm@programming.devlinkfedilinkarrow-up1·edit-22 years agoOne way to make it obvious which function can be called at which state is to use different type. Like UnbackedPizza and CookedPizza, and the bake function takes the former and returns the later.
One way to make it obvious which function can be called at which state is to use different type. Like
UnbackedPizza
andCookedPizza
, and thebake
function takes the former and returns the later.