+
(addition) for int, float and string-
(subtraction) for int and float*
(multiplication) for int and float/
(division) for int and float%
(modulos) for int=
(assignment) for changing values:=
for initialising valuesNote: Unlike other languages, V doesn't allow modulus with float.
>
greater than<
lesser than==
equal to>=
greater than or equal to<=
lesser than or equal to!=
not equal to&&
and||
or!
not<<
left bitshift>>
right bitshift&
bitwise and|
bitwise or^
bitwise xor+=
same as foo = foo + var
-=
same as foo = foo - var
*=
same as foo = foo * var
/=
same as foo = foo / var
&=
same as foo = foo & var
|=
same as foo = foo | var
>>=
same as foo = foo >> var
<<=
same as foo = foo << var
in
for membershipnone
for optional