| OLD | NEW |
| 1 --- | 1 --- |
| 2 layout: default | 2 layout: default |
| 3 title: "Target 1: Get Started" | 3 title: "Target 1: Get Started" |
| 4 description: "Get Dart and run two Dart applications" | 4 description: "Get Dart and run two Dart applications" |
| 5 has-permalinks: true | 5 has-permalinks: true |
| 6 tutorial: | 6 tutorial: |
| 7 id: get-started | 7 id: get-started |
| 8 js: | 8 js: |
| 9 - url: /js/os-switcher.js | 9 - url: /js/os-switcher.js |
| 10 defer: true | 10 defer: true |
| 11 - url: /js/editor-downloads-analytics.js | 11 - url: /js/editor-downloads-analytics.js |
| 12 defer: true | 12 defer: true |
| 13 - url: /js/editor-version.js | 13 - url: /js/editor-version.js |
| 14 defer: true | 14 defer: true |
| 15 next: connect-dart-html |
| 16 next-title: "Connect Dart & HTML" |
| 17 prev: index.html |
| 18 prev-title: "Home" |
| 15 --- | 19 --- |
| 16 | 20 |
| 17 {% capture whats_the_point %} | 21 {% capture whats_the_point %} |
| 18 | 22 |
| 19 * The Dart bundle has development tools, APIs, and samples. | 23 * The Dart bundle has development tools, APIs, and samples. |
| 20 * You can use Dart for web apps and command-line apps. | 24 * You can use Dart for web apps and command-line apps. |
| 21 * Run Dart web apps directly in Dartium. | 25 * Run Dart web apps directly in Dartium. |
| 22 * Compile Dart apps to JavaScript for other browsers. | 26 * Compile Dart apps to JavaScript for other browsers. |
| 23 * All Dart apps have a main() function. | 27 * All Dart apps have a main() function. |
| 24 * Dart supports top-level functions. | 28 * Dart supports top-level functions. |
| (...skipping 534 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 559 and so on. | 563 and so on. |
| 560 </li> | 564 </li> |
| 561 <li> | 565 <li> |
| 562 The <a href="/docs/">Programmer's Guide</a> | 566 The <a href="/docs/">Programmer's Guide</a> |
| 563 points you to docs, articles, | 567 points you to docs, articles, |
| 564 and other resources to help you as you create, | 568 and other resources to help you as you create, |
| 565 test, and deploy Dart code. | 569 test, and deploy Dart code. |
| 566 </li> | 570 </li> |
| 567 </ul> | 571 </ul> |
| 568 | 572 |
| 569 <hr> | |
| 570 | |
| 571 <div class="row"> | |
| 572 <div class="span3"> | |
| 573 <a href="/docs/tutorials/"><i class="icon-chevron-left"> </i> Home</a> | |
| 574 </div> | |
| 575 <div class="span3"> | |
| 576 <a href="http://code.google.com/p/dart/issues/entry?template=Tutorial%20feedback
" | |
| 577 target="_blank"> | |
| 578 <i class="icon-comment"> </i> | |
| 579 Send feedback | |
| 580 </a> | |
| 581 </div> | |
| 582 <div class="span3"> | |
| 583 <a href="/docs/tutorials/connect-dart-html/" class="pull-right">Connect Dart &
amp; HTML <i class="icon-chevron-right"> </i></a> | |
| 584 </div> | |
| 585 </div> | |
| 586 | |
| 587 {% endcapture %} | 573 {% endcapture %} |
| 588 | 574 |
| 589 {% include tutorial.html %} | 575 {% include tutorial.html %} |
| OLD | NEW |