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";
  }
}

 

相关文章:

  • 2021-05-22
  • 2021-11-06
  • 2021-09-26
  • 2021-04-21
  • 2021-04-02
  • 2021-11-02
  • 2022-01-04
  • 2021-07-23
猜你喜欢
  • 2021-06-27
  • 2022-12-23
  • 2021-12-04
  • 2021-06-30
  • 2021-08-10
  • 2022-01-04
  • 2021-05-20
相关资源
相似解决方案