Just a quick one,
If I code an if statement and want two things to happen, how do i write it?
This gives me an error:
if( r1 >= 0) {r1b = r1 && r1s = 0};
does this make sense:
if( r1 >= 0) {r1b = r1 , r1s = 0}; ?
Thank you in advance.
If I code an if statement and want two things to happen, how do i write it?
This gives me an error:
if( r1 >= 0) {r1b = r1 && r1s = 0};
does this make sense:
if( r1 >= 0) {r1b = r1 , r1s = 0}; ?
Thank you in advance.
Comment