Initial commit

This commit is contained in:
Slide Deck
2025-11-13 23:05:30 +08:00
commit cb99a6af31
7 changed files with 1478 additions and 0 deletions

10
snippets/external.ts Normal file
View File

@@ -0,0 +1,10 @@
// #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')
}