diff --git a/readme.md b/readme.md index 26efc9a..58cd1bd 100644 --- a/readme.md +++ b/readme.md @@ -105,26 +105,3 @@ The shortest complete example possible follows: } - -Or, if you want to compile the std lib into your code, which reduces -runtime requirements. - - /// main.cpp - - #include - #include - - double function(int i, double j) - { - return i * j; - } - - int main() - { - chaiscript::ChaiScript chai(chaiscript::Std_Lib::library()); - chai.add(chaiscript::fun(&function), "function"); - - double d = chai.eval("function(3, 4.75);"); - } - -