Differences From Artifact [494a520ea5]:
- File 残局文料/lua_lib/算机_程语_月_基类_能_返参.lua — part of check-in [47e0a87646] at 2024-02-10 04:04:00 on branch trunk — 慢慢来 (user: 顽雨沉风, size: 168) [annotate] [blame] [check-ins using]
To Artifact [457f07f678]:
- File 残局文料/lua_lib/算机_程语_月_基类_能_返参.lua — part of check-in [5b9fb5e09f] at 2024-02-13 05:00:42 on branch trunk — 好 (user: 顽雨沉风, size: 168) [annotate] [blame] [check-ins using]
|
| | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 | local s = {} -- 数量 --~ 入参1 function s.一参(o1) return o1 end --~ 入参1 --~ 入参2 function s.二参(o1, o2) return o1, o2 end return s |