Negates integers. If the number is positive, it will become negative. If the number is negative, it will become positive.
(= Result neg 10) /* the result will be -10 */
(= Result neg -45) /* the result will be 45 */