hello world

1. Readme

你好世界

经典的介绍性练习.只要说”Hello, World!”.

“Hello, World!”是在新的语言或环境中开始编程的第一个程序的传统.

目标很简单:

  • 编写一个返回字符串”Hello,World!”的函数.
  • 运行测试套件,并确保测试成功.
  • 提交您的解决方案,并在网站上查看.

如果一切顺利,你将准备好进行第一次真正的锻炼.

资源

这是一个介绍http://en.wikipedia.org/wiki/%22Hello,_world!%22_program使用者,使用Exercism进行练习.

2. 开始你的表演

// The &'static here means the return type has a static lifetime.
// This is a Rust feature that you don't need to worry about now.
pub fn hello() -> &'static str {
   "Goodbye, World!"
}

3. 测试代码查看


# #![allow(unused_variables)]


#fn main() {
#[test]
fn test_hello_world() {
   assert_eq!("Hello, World!", hello());
}

#}

4. 答案


# #![allow(unused_variables)]
#fn main() {
pub fn hello() -> &'static str {
   "Hello, World!"
}

#}



填充/相关