class B {
    b = "world!";
  }

export class A extends B {
  a = "hello"

  toString() {
     return this.a+" "+this.b; 
  }
}

let a = new A();
export const member_text = a.toString();
