| OLD | NEW |
| (Empty) |
| 1 --- | |
| 2 layout: default | |
| 3 title: "Tutorial: Dartboard & Language Basics" | |
| 4 header: | |
| 5 css: ["/css/dartboard.css"] | |
| 6 --- | |
| 7 <h1> {{ page.title }} </h1> | |
| 8 | |
| 9 <section> | |
| 10 <p> | |
| 11 Follow this tutorial | |
| 12 to modify and run small Dart programs | |
| 13 inside your browser window, | |
| 14 using the Dartboard app. | |
| 15 </p> | |
| 16 </section> | |
| 17 | |
| 18 {% comment %} | |
| 19 NOTE: The guts of this page are in /_includes/docs/getting-started/. | |
| 20 {% endcomment %} | |
| 21 {% include docs/getting-started/_world.html %} | |
| 22 | |
| 23 <section> | |
| 24 | |
| 25 <p> | |
| 26 The next page introduces classes in the Dart language. | |
| 27 </p> | |
| 28 | |
| 29 <section id="start-here"> | |
| 30 <a href="class.html">Next: Classes</a> | |
| 31 </section> | |
| 32 | |
| 33 </section> | |
| 34 | |
| 35 <script async type="text/javascript" | |
| 36 src="http://try.dartlang.org/dartboard.dart.app.js"> | |
| 37 </script> | |
| OLD | NEW |