首页 > 其他 > 详细

Function 1 - hello world

时间:2015-06-24 14:33:47      阅读:108      评论:0      收藏:0      [点我收藏+]

Function 1 - hello world

Make a simple function called greet that returns the most-famous "hello world!".

Although this has been thought as a simple exercise for beginners, other people chimed in and loved to show off how wonderfully complicated you can write "hello world!" - so go for it, create the most beautiful "hello world!"

public static class Kata
{
  // Write a public static method "greet" that returns "hello world!"
  public static string greet()
  {
    return "hello world";
  }
}

 

Function 1 - hello world

原文:http://www.cnblogs.com/chucklu/p/4597450.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!