发布时间:2015-09-15 14:34:32
1.新建Win32控制台应用程序Lua5.3,下一步,应用程序类型选择:DLL,空项目,完成。
......【阅读全文】
发布时间:2015-09-14 16:19:14
<br /><div><div class="codeheads"><p>点击(<span style="cursor:pointer;color:red;" onclick="code_hide('code91')">此处</span>)折叠或打开</p></div><div id="code91" class="codeText"><ol style="margin:0 1px 0 0px;padding-left:40px;" start="1" class="dp-css"><li><span style="c.........【阅读全文】
发布时间:2015-09-14 16:11:34
myTable = {7,1,13,6,89,4,56,2,54,6}
-- 获得table中的最小值
function GetMin(theTable)
myString = "myValue = math.min("
for index,value in ipairs(theTable) do
myString = string.format("%s%d%s", myString, value.........【阅读全文】