IXWebSocket/luarocks/functions.hpp

12 lines
194 B
C++
Raw Normal View History

2020-04-21 08:02:23 +02:00
#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