Overview
Comment: | 7小于8 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
168300f86647c0c5f8e1cca1828e5ae0 |
User & Date: | 顽雨沉风 on 2024-02-03 16:04:20 |
Other Links: | manifest | tags |
Context
2024-02-03
| ||
16:05 | 7小于8 check-in: 4e48ffd0e5 user: 顽雨沉风 tags: trunk | |
16:04 | 7小于8 check-in: 168300f866 user: 顽雨沉风 tags: trunk | |
16:03 | 14比16小 check-in: 65d8c2fcdd user: 顽雨沉风 tags: trunk | |
Changes
Modified 残局文料/lua_lib/常用库.lua from [1fa21e538a] to [ef68c67732].
︙ | ︙ | |||
112 113 114 115 116 117 118 | table.insert(o1_11, "return k1_11") return table.concat(o1_11, "\n") end --~ 文 --~ 文件路 --~ 式 function d_4.写文件(o1, o2, o3) | | | | | | | 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 | table.insert(o1_11, "return k1_11") return table.concat(o1_11, "\n") end --~ 文 --~ 文件路 --~ 式 function d_4.写文件(o1, o2, o3) local k1_3 --~ 文件 k1_3 = io.open(o2, o3 or "w") k1_3:write(o1) k1_3:flush() k1_3:close() end function d_4.删左右空白(o1) o1 = string.gsub(o1, "^%s+", "") return string.gsub(o1, "%s+$", "") end return d_4 |