ChaiScript/samples/callbacks.chai
2009-06-20 16:02:22 +00:00

8 lines
252 B
ChaiScript

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