This commit is contained in:
2022-12-03 16:14:02 +00:00
parent b381d29871
commit 6833bfb1e3
7 changed files with 3328 additions and 5 deletions

View File

@@ -7,3 +7,8 @@ export const readFile = (file: string): any => {
export const print = (array: any[]) => {
array.forEach(x => console.log(x));
}
export const sum = (n1, n2) => {
return n1 + n2;
}