All programming philosophies are about state
worldofbs.com
All programming philosophies are about state
1–10 of 254 posts
Re: All programming philosophies are about state
#2Re: All programming philosophies are about state
#3My main beef with functional programming is that you essentially put the state in the "instruction pointer" and its history of walking the call stack instead of bound to symbols. It does not fit my way of thought. I personally prefer more or less statemachines.
Re: All programming philosophies are about state
#4Re: All programming philosophies are about state
#5"Functional - Modifying state is hard to get correct; keep it at the boundaries and keep logic pure so that it is easier to verify the logic is correct." My main beef with functional programming is that you essentially put the state in the "instruction pointer" and its history of walking the call stack instead of bound to symbols. It does not fit my way of thought. I personally prefer more or less statemachines.
Re: All programming philosophies are about state
#6Re: All programming philosophies are about state
#7i want to see someone elaborate a state-maximizing, instead of state-minimizing, philosophy. lean in
Re: All programming philosophies are about state
#8Re: All programming philosophies are about state
#9"Functional - Modifying state is hard to get correct; keep it at the boundaries and keep logic pure so that it is easier to verify the logic is correct." My main beef with functional programming is that you essentially put the state in the "instruction pointer" and its history of walking the call stack instead of bound to symbols. It does not fit my way of thought. I personally prefer more or less statemachines.
Re: All programming philosophies are about state
#10Lisp stands in stark contrast to this. The lisp philosophy is this: as with every science, you mould your language to your problem, not the other way around.