IXWebSocket/luarocks/functions.hpp
2020-04-28 14:39:01 -07:00

12 lines
194 B
C++

#ifndef FUNCTIONS_HPP
#define FUNCTIONS_HPP
#include <iostream>
int lua_info(lua_State* L)
{
std::cout << "C++ Lua v0.1" << std::endl << std::endl;
return 0;
}
#endif // FUNCTIONS_HPP