相关疑难解决方法(0)

我的'randomString'函数不断返回相同的结果

randomString.lua

----------------------------------------------------------------------------
-- File: randomString.lua
-- Author: Don Draper
-- 
-- This is the Lua implementation of my simple 'randomString' function
-- which I previous wrote in PAWN.
----------------------------------------------------------------------------

randomString = {}

local randomCharset = {
    "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z",
    "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", …
Run Code Online (Sandbox Code Playgroud)

random lua

4
推荐指数
1
解决办法
190
查看次数

标签 统计

lua ×1

random ×1