ChaiScript/unittests/operator_overload3.chai
2015-10-01 09:39:03 -06:00

8 lines
101 B
ChaiScript

def string::`/=`(double d) { this = "${this}/=${d}"; return this; }
var s = "Hello World"
s /= 2