Ah I see, it's the result notation for returning that's making it a bit hard to 
see here. Instead of doing return 10 we can do result = 10.

In * you see that we have a result, but in *= we do not. So * returns a value 
while *= does not. :-)

Reply via email to