diff options
| author | Dax Raad <[email protected]> | 2025-05-21 10:30:39 -0400 |
|---|---|---|
| committer | Dax Raad <[email protected]> | 2025-05-26 12:40:17 -0400 |
| commit | e01afb407c4b3eb50e85e7356b0be9489fb26eba (patch) | |
| tree | d2aef91ec1894376c4d5a99ea2d11f6ad32b68de /js/scrap.ts | |
| parent | f0f55bc75ff2bbc6690ae61c771a46de7c2bb17d (diff) | |
| download | opencode-e01afb407c4b3eb50e85e7356b0be9489fb26eba.tar.gz opencode-e01afb407c4b3eb50e85e7356b0be9489fb26eba.zip | |
add tool tests
Diffstat (limited to 'js/scrap.ts')
| -rw-r--r-- | js/scrap.ts | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/js/scrap.ts b/js/scrap.ts new file mode 100644 index 000000000..35ff3fbfb --- /dev/null +++ b/js/scrap.ts @@ -0,0 +1,30 @@ +// This is a dummy file for testing purposes +console.log('Hello, world!'); + +export function dummyFunction(): void { + console.log('This is a dummy function'); +} + +export function anotherDummyFunction(): string { + return 'This is another dummy function'; +} + +export function newDummyFunction(): number { + return 42; +} + +export function extraDummyFunction(): boolean { + return true; +} + +export function superDummyFunction(): void { + console.log('This is a super dummy function'); +} + +export function ultraDummyFunction(): object { + return { dummy: true }; +} + +export function megaDummyFunction(): Array<string> { + return ['dummy', 'mega', 'function']; +}
\ No newline at end of file |
