Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

常量&变量

let FUZZ_VERSION

public let FUZZ_VERSION: String = "1.0.0"

功能:Fuzz 版本。

注意:

不支持平台:Windows。

类型:String

示例:

import stdx.fuzz.fuzz.*

main() {
    println("Fuzz 版本: ${FUZZ_VERSION}")
    return 0
}

运行结果:

Fuzz 版本: 1.0.0