Today
Total
08-28 19:12
관리 메뉴

devGYU World

[Exercism Dart] Hello World 솔루션 본문

etc/exercise

[Exercism Dart] Hello World 솔루션

devGYU 2022. 3. 18. 12:03

 

본 문제는 가장 기본적인 "Hello world"를 리턴하는 예제이다.

예제를 풀기 위한 코드는 아래와 같다.

 

class HelloWorld {
  String hello() {
    return "Hello, World!";
  }
}

 

참고
 

Hello World in Dart on Exercism

Can you solve Hello World in Dart? Improve your Dart skills with support from our world-class team of mentors.

exercism.org

 

GitHub - gyu0710/dart: Exercism Dart Solutions

Exercism Dart Solutions. Contribute to gyu0710/dart development by creating an account on GitHub.

github.com

 

Comments