first commit

This commit is contained in:
Stefano Rossi 2025-07-10 00:44:37 +02:00
commit ee9158fae5
Signed by: chadmin
GPG key ID: 9EFA2130646BC893
23 changed files with 8156 additions and 0 deletions

12
snippets/external.ts Normal file
View file

@ -0,0 +1,12 @@
/* eslint-disable no-console */
// #region snippet
// Inside ./snippets/external.ts
export function emptyArray<T>(length: number) {
return Array.from<T>({ length })
}
// #endregion snippet
export function sayHello() {
console.log('Hello from snippets/external.ts')
}