跳转到内容

Rebol 编程/delta-time

来自维基教科书,开放世界中的开放书籍
DELTA-TIME block 

Delta-time - 返回评估代码块所需的时间。

DELTA-TIME 是一个函数值。

  • block -- (类型:代码块)

源代码

[编辑 | 编辑源代码]
delta-time: func [
    {Delta-time - returns the time it takes to evaluate the block.} 
    block [block!] /local 
    start
][
    start: now/precise 
    do block 
    difference now/precise start
]
华夏公益教科书