Change to match template better

This commit is contained in:
Sebastian Seedorf
2020-12-07 18:24:03 +01:00
parent db663e8a2b
commit 72b9985e3e
4 changed files with 129 additions and 8 deletions

View File

@@ -1,5 +1,5 @@
export function main(): string {
return 'Hello World';
export class SampleClass {
add(a: number, b: number): number {
return a+b;
}
}
main();