该static关键字声明一个全局静态绑定,这可能是可变的。
static HELLO_WORLD: &'static str = "Hello, world!"; fn main() { println("{}", HELLO_WORLD); }
这个输出
Hello, world!