Cleanup comment in example.cpp

This commit is contained in:
Jason Turner 2009-07-25 13:48:44 +00:00
parent 9f614bba33
commit 669d6e9495

View File

@ -111,11 +111,7 @@ int main(int argc, char *argv[]) {
std::cout << "scripti (updated): " << scripti << std::endl;
chai("print(\"Scripti from chai: \" + to_string(scripti))");
// Add examples of handling Boxed_Values directly when needed
// Add usage model for mixed use:
// chai.eval("call(?, ?)", 5, "hello world"); or something
//To do: Add examples of handling Boxed_Values directly when needed
//Creating a functor on the stack and using it immediatly
int x = chai.functor<int (int, int)>("fun (x, y) { return x + y; }")(5, 6);