diff options
author | elioat <elioat@tilde.institute> | 2024-12-07 20:35:45 -0500 |
---|---|---|
committer | elioat <elioat@tilde.institute> | 2024-12-07 20:35:45 -0500 |
commit | c85546680048d48cdedb66bce56556454d759794 (patch) | |
tree | 2cf6e2245717d4a2533e8e4db6530d637e295ea2 /html/mountain | |
parent | e18e2fd8cb2715afd5a5ebb4d8bc82da99a34340 (diff) | |
download | tour-c85546680048d48cdedb66bce56556454d759794.tar.gz |
*
Diffstat (limited to 'html/mountain')
-rw-r--r-- | html/mountain/game.js | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/html/mountain/game.js b/html/mountain/game.js index 7db1892..e6b32b3 100644 --- a/html/mountain/game.js +++ b/html/mountain/game.js @@ -1,3 +1,31 @@ +/* ================================ + +45 + +There's something quieter than sleep +Within this inner room! +It wears a sprig upon its breast— +And will not tell its name. + +Some touch it, and some kiss it— +Some chafe its idle hand— +It has a simple gravity +I do not understand! + +I would not weep if I were they— +How rude in one to sob! +Might scare the quiet fairy +Back to her native wood! + +While simple-hearted neighbors +Chat of the "Early dead"— +We—prone to periphrasis +Remark that Birds have fled! + +Emily Dickinson + +================================*/ + const canvas = document.createElement('canvas'); const ctx = canvas.getContext('2d'); document.body.appendChild(canvas); |