blob: 02c1fa79c861643d4dc3f98883f23c3f89a8db8d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
local data = TSG.data
local result = "true"
if not TSG.get.get_result() then
result = "false"
end
local flag = "not nil"
if not TSG.get.get_nil() then
flag = "is nil"
end
local str = string.format("result:%s, time:%d, %s", result, TSG.get.get_time(), flag)
return string.len(str), str
|