+ 1
Bug?
has anybody else noticed that in the first basic arithmetic there is an extra space. what is that for? P.S. what am I supposed to put there?
3 Antworten
+ 3
Zebaniah Whitmore
That's not a bug. That's is coding style. It makes code readability better.
For example:
a+b and a + b both are same things but 2nd one is more readable than 1st one.
This is just a simple example but if you have long program then we have to do like that.
0
thanks. i get it now