File tree Expand file tree Collapse file tree 1 file changed +35
-0
lines changed
Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Original file line number Diff line number Diff line change 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/ )
You can’t perform that action at this time.
0 commit comments