polishing

This commit is contained in:
Jonas Pfalzgraf 2022-08-23 18:08:10 +02:00
parent f61a73f2f6
commit 0eeaa9cb84
4 changed files with 42 additions and 29 deletions

View file

@ -0,0 +1,15 @@
/**
* App
*/
class App {
constructor() {
this.main();
}
private main() {
console.log('Hello World!');
}
}
new App();