Lines Matching refs:lutok
34 /// purpose of this example program is to show how this is done by using Lutok.
44 #include <lutok/exceptions.hpp>
45 #include <lutok/operations.hpp>
46 #include <lutok/state.ipp>
77 /// Lutok will convert this exception to lutok::error.
79 lua_factorial(lutok::state& state)
107 lutok::state state;
115 std::map< std::string, lutok::cxx_function > module;
117 lutok::create_module(state, "native", module);
123 // binding and that it has been converted to a lutok::error.
127 lutok::do_string(state, script.str());
129 } catch (const lutok::error& e) {