mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-18 17:05:46 -04:00
Initial community commit
This commit is contained in:
32
Src/Plugins/Visualization/vis_avs/help_2.bin
Normal file
32
Src/Plugins/Visualization/vis_avs/help_2.bin
Normal file
@ -0,0 +1,32 @@
|
||||
The following operators are available:
|
||||
=
|
||||
assigns a value to a variable.
|
||||
example: var=5;
|
||||
|
||||
+
|
||||
adds two values, returns the sum.
|
||||
example: var=5+var2;
|
||||
|
||||
-
|
||||
subtracts two values, returns the difference.
|
||||
example: var=5-var2;
|
||||
|
||||
*
|
||||
multiplies two values, returns the product.
|
||||
example: var=5*var2;
|
||||
|
||||
/
|
||||
divides two values, returns the quotient.
|
||||
example: var=5/var2;
|
||||
|
||||
%
|
||||
converts two values to integer, performs division, returns remainder
|
||||
example: var=var2%5;
|
||||
|
||||
|
|
||||
converts two values to integer, returns bitwise OR of both values
|
||||
example: var=var2|31;
|
||||
|
||||
&
|
||||
converts two values to integer, returns bitwise AND of both values
|
||||
example: var=var2&31;
|
Reference in New Issue
Block a user