blob: b98134f743a52c87df9d0825a7ea011d078879a3 [file] [log] [blame]
/// The main function. It does the main thing.
main(List<String> args) {
new HelloPrinter().sayHello();
}
/// A class that prints 'Hello'.
class HelloPrinter {
/// A method that prints 'Hello'
void sayHello() {
print('hello');
}
}