special characters must be escaped
I cannot get my head around what seems to be a simple problem. Dreamweaver keeps getting an error code for "special characters must be escaped" for these two lines of code:
/* If the ball is about to go off screen horizontally, reverse
* the direction of the ball */
if ( x < 0 || x > 290)
dx = -dx;
/* If the ball is about to go off screen vertically, reverse
* the direction of the ball */
if ( y < 0 || y > 305)
dy =- dy;
It keeps marking the error where the comparisson operators "<" and the ">" are used. Any ideas?
