📄 test.cpp
字号:
// test.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include <iostream>
#include <string>
using namespace std;
#include "LuaPlus.h"
using namespace LuaPlus;
int add(int a, int b)
{
return (a + b);
}
void TravelTable(LuaObject& obj)
{
for(LuaPlus::LuaTableIterator it(obj); it; it.Next())
{
// 浪琩 Key
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -