| OLD | NEW |
| 1 --- | 1 --- |
| 2 layout: default | 2 layout: default |
| 3 title: "Programmer's Guide" | 3 title: "Programmer's Guide" |
| 4 description: "Documentation, references, and more about the Dart language, libra
ries, and tools." | 4 description: "Documentation, references, and more about the Dart language, libra
ries, and tools." |
| 5 has-permalinks: true | 5 has-permalinks: true |
| 6 --- | 6 --- |
| 7 | 7 |
| 8 {% include docs_toc.html %} | 8 {% include docs_toc.html %} |
| 9 | 9 |
| 10 # {{ page.title }} | 10 # {{ page.title }} |
| 11 | 11 |
| 12 This overview of Dart development | 12 This overview of Dart development |
| 13 points you to docs, articles, and other resources | 13 points you to docs, articles, and other resources |
| 14 to help you as you create, test, and deploy Dart code. | 14 to help you as you create, test, and deploy Dart code. |
| 15 | 15 |
| 16 ## Getting started | 16 ## Getting started |
| 17 | 17 |
| 18 Read these, | 18 Read these, |
| 19 or just [download Dart](/#get-started) | 19 or just [download Dart](/#get-started) |
| 20 and start playing with Dart Editor. | 20 and start playing with Dart Editor. |
| 21 | 21 |
| 22 [Try Dart](/codelabs/darrrt/) | 22 [Avast, Ye Pirates: Write a Web App](/codelabs/darrrt/) |
| 23 : Walks you through building a web app. | 23 : Walks you through building a web app. |
| 24 This one-hour code lab assumes you have some programming experience | 24 This one-hour code lab assumes you have some programming experience |
| 25 but no previous experience with either Dart or web apps. | 25 but no previous experience with either Dart or web apps. |
| 26 | 26 |
| 27 [Language Tour (_Dart: Up and Running_, Chapter 2)](/docs/dart-up-and-running/co
ntents/ch02.html) | 27 [Language Tour (_Dart: Up and Running_, Chapter 2)](/docs/dart-up-and-running/co
ntents/ch02.html) |
| 28 : Shows each major Dart language feature, from variables to | 28 : Shows each major Dart language feature, from variables to |
| 29 operators to classes and libraries. | 29 operators to classes and libraries. |
| 30 | 30 |
| 31 [Dart Tutorials](/docs/tutorials/) | 31 [Dart Tutorials](/docs/tutorials/) |
| 32 : Your step-by-step guide to building web apps using Dart. | 32 : Your step-by-step guide to building web apps using Dart. |
| (...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 check the list of Dart issues to see whether | 231 check the list of Dart issues to see whether |
| 232 the problem has already been reported | 232 the problem has already been reported |
| 233 and has a workaround. | 233 and has a workaround. |
| 234 | 234 |
| 235 To request a feature, you can create an issue | 235 To request a feature, you can create an issue |
| 236 or start a discussion on the appropriate | 236 or start a discussion on the appropriate |
| 237 [mailing list](/support/). | 237 [mailing list](/support/). |
| 238 | 238 |
| 239 * [Dart issues](http://code.google.com/p/dart/issues/list) | 239 * [Dart issues](http://code.google.com/p/dart/issues/list) |
| 240 | 240 |
| OLD | NEW |