Skip to content

Commit 77771d6

Browse files
author
Ben Christel
committed
Add docs under __/ directory to try to bypass service worker
- From the service worker code, it looks like only URLs that don't begin with __/ are served from cache.
1 parent 92c789f commit 77771d6

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

__/docs/index.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Verse
2+
3+
**Verse is an online programming tool** that makes it easy to
4+
create simple programs and games. In the future, you'll
5+
be able to share your programs and remix others' work, too.
6+
7+
**Verse is designed with beginners in mind.** It's a great way
8+
to start learning to code. But even professional programmers
9+
will find it useful for quickly sketching ideas or bringing
10+
their side projects to life.
11+
12+
[**Try it out!**](https://druidic.github.io) No need to create
13+
an account or log in. Just click the link and start coding.
14+
Here's a simple program you can copy-paste to get started.
15+
16+
```javascript
17+
define({
18+
*init() {
19+
let intro = "Hello! What's your name?"
20+
let name = yield waitForInput(intro)
21+
yield log('Nice to meet you, ' + name + '!')
22+
yield wait(1)
23+
yield retry()
24+
}
25+
})
26+
```
27+
28+
Once you're ready for more, you can continue reading the
29+
Verse documentation here... but first, tell us a bit about
30+
your programming experience.
31+
32+
- [I'm new to programming!](./beginner/)
33+
- [I know how to program but I don't know JavaScript.](./intermediate/)
34+
- [I already know JavaScript.](./advanced/)
35+
- [There are things I wish I *didn't* know about JavaScript.](./advanced/)

0 commit comments

Comments
 (0)