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