Rebol 编程/delta-time
外观
< Rebol 编程
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
]