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

📄 frametest.via

📁 一个用VB写的很好的编译器,功能超好,不过就是代码有点多,是进一步学习编译的好
💻 VIA
字号:
// FrameTest.lnl

application PE GUI entry main;

import MessageBox ascii lib "USER32.DLL",4;

dword x;

frame MsgBoxInt(dword x);
    local string strMsg[128];
    Format(strMsg, "Value = %d", x);     
    MessageBox(0,strMsg,"Result",$20);
end;

frame main();
    x = 2;
    MsgBoxInt(x);
end;

⌨️ 快捷键说明

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