exercism/dart/hello-world/lib/hello_world.dart

6 lines
72 B
Dart

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