⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 main.cpp

📁 C++轻量级分析器
💻 CPP
字号:
#include "..\..\..\Library\Platform\VL_Console.h"

using namespace vl;
using namespace vl::platform;

#define RUN(NAME) do{extern void NAME();GetConsole()->WriteLine(L"====================" L#NAME L"====================");NAME();GetConsole()->Write(L"按[ENTER]继续");GetConsole()->WaitForEnter();}while(0)

void vlmain()
{
	GetConsole()->SetTitle(L"Vczh Combinator Parser Demo");
	GetConsole()->SetTestMemoryLeaks(true);
	GetConsole()->SetPauseOnExit(true);

	RUN(NumberList_Main);
	RUN(IniFile_Main);
	RUN(Expression_Main);
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -