Overview
| Comment: | 实现 |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
82138b1e5241f64bf8e9e54abe76acba |
| User & Date: | 顽雨沉风 on 2024-02-06 13:53:35.080 |
| Other Links: | manifest | tags |
Context
|
2024-02-06
| ||
| 13:55 | 加限 check-in: 764c98fc54 user: 顽雨沉风 tags: trunk | |
| 13:53 | 实现 check-in: 82138b1e52 user: 顽雨沉风 tags: trunk | |
| 13:50 | 加限 check-in: 90284ec86e user: 顽雨沉风 tags: trunk | |
Changes
Modified 残局文料/lua_lib/算机_程语_月_基类_数.lua
from [57e39c7947]
to [ab309c9d6b].
1 2 3 |
local d = {}
-- 加减
return d
| > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 |
local d = {}
-- 加减
--~ 左加数
--~ 右加数
function d.加法(o1, o2)
return o1 + o2
end
--~ 左减数
--~ 右减数
function d.减法(o1, o2)
return o1 - o2
end
return d
|