mirror of
https://gitea.toothfairyai.com/ToothFairyAI/tf_code.git
synced 2026-03-31 06:12:26 +00:00
11 lines
222 B
TypeScript
11 lines
222 B
TypeScript
export const foo: string = "42"
|
|
export const bar: number = 123
|
|
|
|
export function dummyFunction(): void {
|
|
console.log("This is a dummy function")
|
|
}
|
|
|
|
export function randomHelper(): boolean {
|
|
return Math.random() > 0.5
|
|
}
|