ChaiScript/samples/callbacks.chai

8 lines
259 B
ChaiScript

cb_handler.add_callbacks( function() { "First"; }, function (x) { x * 1.1; } );
cb_handler.add_callbacks( function() { "TimesThree"; }, function(x) { return x * 3.0} );
cb_handler.add_callbacks( function() { "DivOnePtTwo"; }, function (x) { x / 1.2; } );