| OLD | NEW |
| 1 --- | 1 --- |
| 2 layout: default | 2 layout: default |
| 3 title: "A Tour of the Dart Language" | 3 title: "A Tour of the Dart Language" |
| 4 description: "Learn how to use each major Dart language feature." | 4 description: "Learn how to use each major Dart language feature." |
| 5 --- | 5 --- |
| 6 | 6 |
| 7 <h1> {{ page.title }} </h1> | 7 <h1> {{ page.title }} </h1> |
| 8 | 8 |
| 9 <section class="overview"> | 9 <section class="overview"> |
| 10 <p> | 10 <p> |
| 11 Welcome to the Dart language tour! | 11 Welcome to the Dart language tour! |
| 12 We'll show you how to use each major Dart language feature, | 12 We'll show you how to use each major Dart language feature, |
| 13 from variables to operators to classes and libraries, | 13 from variables to operators to classes and libraries, |
| 14 with the assumption that you already know how to program in another language. | 14 with the assumption that you already know how to program in another language. |
| 15 </p> | 15 </p> |
| 16 | 16 |
| 17 <aside class="note"> | 17 <aside> |
| 18 <b>Tip:</b> | 18 <div class="alert alert-info"> |
| 19 Create a server application project in Dart Editor | 19 <strong>Tip:</strong> |
| 20 so you can play with each feature. | 20 Create a server application project in Dart Editor |
| 21 See <a href="/docs/editor/getting-started/">Getting Started with Dart Editor</a> | 21 so you can play with each feature. |
| 22 for instructions. | 22 See <a href="/docs/editor/getting-started/">Getting Started with Dart Editor
</a> |
| 23 for instructions. |
| 24 </div> |
| 23 </aside> | 25 </aside> |
| 24 | 26 |
| 25 <p> | 27 <p> |
| 26 Consult the | 28 Consult the |
| 27 <a href="/docs/spec/index.html">Dart Language Specification</a> | 29 <a href="/docs/spec/index.html">Dart Language Specification</a> |
| 28 whenever you want more details about a language feature. | 30 whenever you want more details about a language feature. |
| 29 </p> | 31 </p> |
| 30 | 32 |
| 31 <h4 id="toc"> Contents </h4> | 33 <h4 id="toc"> Contents </h4> |
| 32 <ol class="toc"> | 34 <ol class="toc"> |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 | 181 |
| 180 <section> | 182 <section> |
| 181 <h2 id="comments">Comments</h2> | 183 <h2 id="comments">Comments</h2> |
| 182 {% render language-tour/comments/index.markdown %} | 184 {% render language-tour/comments/index.markdown %} |
| 183 <p class="up-to-toc"> | 185 <p class="up-to-toc"> |
| 184 <a href="#toc">Back to contents.</a> | 186 <a href="#toc">Back to contents.</a> |
| 185 </p> | 187 </p> |
| 186 </section> | 188 </section> |
| 187 | 189 |
| 188 <script async src="/js/lang-tour-analytics.js"></script> | 190 <script async src="/js/lang-tour-analytics.js"></script> |
| OLD | NEW |