main function

void main()

Implementation

void main() {
  ConfigReader.readYaml("""
- Cat
- Dog
- Goldfish
  """).then((value) {
    print(value);
  });
}