Skip to content

Commit

Permalink
wiki/BBSRubySyntax.md: Enclose Ruby builtin functions with
Browse files Browse the repository at this point in the history
  • Loading branch information
IepIweidieng committed Feb 26, 2020
1 parent b01cf81 commit 5bafd19
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions wiki/BBSRubySyntax.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,14 +154,14 @@ _`bbs.getmaxyx()`_ |傳回目前螢幕大小 `(my,mx)`, 實際可移動
------------------------ | ----------------------------------------------
~~`bbs.time()`~~ |現在時間 (以數字表示),精準度到秒 (處理速度較快)
~~`bbs.now()`~~ |同 `time()`
 | 請使用 Ruby 內建的 Time.now
 | 請使用 Ruby 內建的 `Time.now`
 |
~~`bbs.ctime()`~~ |現在時間 (以字串表示)
 | 請使用 Ruby 內建的 Time.now.to_s
 | 請使用 Ruby 內建的 `Time.now.to_s`
 |
`bbs.clock()` |高精準度的時間 (可到秒的小數點以下但速度較慢)
~~`bbs.sleep(sec)`~~ |停止執行 `sec` 秒 (可到小數點以下)
 | 請使用 Ruby 內建的 sleep。
 | 請使用 Ruby 內建的 `sleep`

BBS 資訊 ||
------------------------ | ------------------
Expand Down

0 comments on commit 5bafd19

Please sign in to comment.