--- linuxsampler/trunk/src/scriptvm/examples/expressions.txt 2014/05/30 12:48:05 2581 +++ linuxsampler/trunk/src/scriptvm/examples/expressions.txt 2014/06/11 13:24:32 2619 @@ -23,4 +23,11 @@ message("Bit operation not 1 = " & not 1) message("Bit operation not 2 = " & not 2) message("Bit operation not 0 = " & not 0) + + message("abs(-3) = " & abs(-3)) + + message("random(-5,5) = " & random(-5,5)) + message("random(-5,5) = " & random(-5,5)) + message("random(-5,5) = " & random(-5,5)) + end on