Originally posted by judgement
View Post
"EventTypeResult is an object variable that equals the output of the function ParseJsonRpcResponseToCollection"
This sort of statement is an extremely common one in computer code. It's best not thought of as something being equal to something else. Rather, it's an assignment statement. If we have something like this:
A = B
it's not saying "A is equal to B", it's saying "put the value(s) of B into A". Or "make A equal to B" or "set A equal to B" or "assign the value of B to A". That sort of phrase.
There are different versions in other languages; some use := rather than = and COBOL uses the (now) slightly confusing MOVE statement.
It's just a minor thing, and you probably got it already.


await more questions 
so will think about it then.
Comment