mirror of
https://github.com/swc-project/swc.git
synced 2025-01-04 11:37:06 +03:00
7 lines
87 B
TypeScript
7 lines
87 B
TypeScript
class App {
|
|
constructor(){
|
|
console.log('Hello from app');
|
|
}
|
|
}
|
|
new App;
|