variant compound ops



variant_compound_ops
Smart pascal source code
var v: Variant = 5; WriteLn(v); v += 1; WriteLn(v); v *= 2; WriteLn(v); v -= 3; WriteLn(v); {<<< RESULT - CONSOLE LOG >>> ----------------------------- 5 6 12 9 ----------------------------- {<<<<<<<<< THE END >>>>>>>>>}