Tagged Questions
6
votes
5answers
4k views
What is Functional Decomposition?
Functional Decomposition, what is it useful for and what are it's pros/cons? Where are there some worked examples of how it is used?
2
votes
6answers
54 views
How should I format this piece of code?
Here are two ways of calling callscript (in pseudocode):
using duplicate calls
if flag == true
flag = false
callscript
flag = true
else
callscript
endif
using an extra ...