Overview
| Comment: | (/ω\) |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
7d6f7dfb79855b4fb3e23599da06f3e6 |
| User & Date: | 顽雨沉风 on 2024-01-29 07:55:38.292 |
| Other Links: | manifest | tags |
Context
|
2024-01-29
| ||
| 08:02 | (/ω\) check-in: db6142b5e8 user: 顽雨沉风 tags: trunk | |
| 07:55 | (/ω\) check-in: 7d6f7dfb79 user: 顽雨沉风 tags: trunk | |
| 07:53 | (/ω\) check-in: 20b23bb5eb user: 顽雨沉风 tags: trunk | |
Changes
Modified 残局文料/dfns_jvwg_ysaf/程序语言_月_基础类型_功能_传入参数_转化.lua
from [c27ba9f840]
to [38877cfd09].
1 2 |
local d_2 = {}
--~ 传参_参数数量
| | | | | 1 2 3 4 5 6 7 8 9 10 11 12 |
local d_2 = {}
--~ 传参_参数数量
function d_2.二个参数(o1, o2, o3, o4)
return o1(o2(o3), o2(o4))
end
function d_2.三个参数(o1, o2, o3, o4, o5)
return o1(o2(o3), o2(o4), o2(o5))
end
function d_2.四个参数(o1, o2, o3, o4, o5, o6)
return o1(o2(o3), o2(o4), o2(o5), o2(o6))
end
return d_2
|