import Foo from 'bar'

// sample class definition
class Sample {
  constructor(arg) {
    this.greet = `Hello ${arg}!`;
    this.counter = 0;
    this.pattern = /\w+/;
  }

  greet(argument) {
    console.log(this.greet);
  }
}