Add % to term() and c_term(), same precedence as * and /. Maps to i64.rem_s in WAT. Add i64.rem_s to the VM.
%
term()
c_term()
*
/
i64.rem_s
check_both("10 % 3", 1); check_both("17 % 5", 2);
### Compound assignment