返回第一个让回调结果为真的值。
object.find(callback)
data = {a: 1, b: 2, c: 3} result = data.find(fn(value) { value > 1 }) // 输出:2 print result