2020-04-29 07:22:45 +02:00
|
|
|
/*
|
|
|
|
* 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>
|
|
|
|
|
2020-04-29 07:22:45 +02:00
|
|
|
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;
|
|
|
|
}
|