export default class App {
  constructor(public str: string) { }

  greet() {
    /* This is a comment that should be removed */
    return this.str;
  }
}
