int luaopen_hello_lua_module(lua_State* L)
{
	using namespace kaguya;

	State state(L);
	LuaTable module = state.newTable();

	module["hello"]=kaguya::function(&hello);

	
	return module.push();
}