From 3a1221648266ef216aca8cf9549b11a9af631302 Mon Sep 17 00:00:00 2001 From: Emma Date: Tue, 7 Feb 2023 07:18:09 -0700 Subject: [PATCH] INITIAL TESTING COMMIT --- README.md | 8 ++++++-- mod.ts | 3 +++ 2 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 mod.ts diff --git a/README.md b/README.md index 7abcc56..d785712 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,7 @@ -# doodler +# Doodler -Doodler is a library that wraps HTML5 Canvas elements with power. A Doodler instance transforms a canvas into a fully functional user interface \ No newline at end of file +Doodler is a library that wraps HTML5 Canvas elements with power. A Doodler instance transforms a canvas into a fully functional user interface + +## Powered by Deno + + diff --git a/mod.ts b/mod.ts new file mode 100644 index 0000000..8721841 --- /dev/null +++ b/mod.ts @@ -0,0 +1,3 @@ +export const hello = () => { + console.log('HELLO WORLD'); +} \ No newline at end of file