Overview
Comment: | 实现 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
420d28e057885143ea85dc242b91fb0a |
User & Date: | 顽雨沉风 on 2024-02-06 13:55:46 |
Other Links: | manifest | tags |
Context
2024-02-06
| ||
14:04 | 觉怪 check-in: c5eba05a4e user: 顽雨沉风 tags: trunk | |
13:55 | 实现 check-in: 420d28e057 user: 顽雨沉风 tags: trunk | |
13:55 | 加限 check-in: 764c98fc54 user: 顽雨沉风 tags: trunk | |
Changes
Modified 残局文料/lua_lib/算机_程语_月_基类_数.lua from [fb0e89b47a] to [e6783b3394].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | + + + + + + + + + + | local d = {} -- 加减 --~ 左加数 --~ 右加数 function d.加法(o1, o2) return o1 + o2 end --~ 左减数 --~ 右减数 function d.减法(o1, o2) return o1 - o2 end -- 乘除 --~ 左乘数 --~ 右乘数 function d.乘法(o1, o2) return o1 * o2 end --~ 左除数 --~ 右除数 function d.除法(o1, o2) return o1 / o2 end return d |