/*
* This is some sample code to illustrate how things look!
*/
import * as templates from './somewhere';
import Musician from './musician';
const something = true;
export let blah = 123;
var somethingElse = false;
function test() {
return new Promise((resolve, reject) => {
resolve();
});
}
class SomeClass {
render() {
return templates.helloWorld();
}
}
class TaylorSwift extends Musician {
constructor(position) {
super(position);
}
get yearOfBirth() {
return 1989;
}
perform(song) {
this.sing(song)
}
}
export default Paul;