IXWebSocket/luarocks/functions.hpp

16 lines
262 B
C++
Raw Normal View History

/*
* functions.hpp
* Author: Benjamin Sergeant
* Copyright (c) 2020 Machine Zone, Inc. All rights reserved.
*/
#pragma once
2020-04-21 08:02:23 +02:00
#include <iostream>
int lua_info(lua_State* /*L*/)
2020-04-21 08:02:23 +02:00
{
std::cout << "C++ Lua v0.1" << std::endl << std::endl;
return 0;
}