Pseudocode question?

when you do a line of pseudocode do you do variableOne + variableTwo = variableThree; or variableThree = variableOne + variableTwo; ?
Answers

Quentin

variableThree = variableOne + variableTwo;

Impaled

Neither. Both. Either. It depends on the specs. Unless you're playing on "do a line", then "line of pseudo-code" means that you're just describing in common language (usually in a programming language's comments in your native or required human language) what you're intending to do when you actually write the code.

Phelan

Second one