| OLD | NEW |
| 1 --- | 1 --- |
| 2 layout: default | 2 layout: default |
| 3 title: "Getting Started with the SDK" | 3 title: "Getting Started with the SDK" |
| 4 description: "Learn to download and use the Dart SDK, which includes the Dart VM
and the Dart-to-JavaScript compiler." | 4 description: "Learn to download and use the Dart SDK, which includes the Dart VM
and the Dart-to-JavaScript compiler." |
| 5 --- | 5 --- |
| 6 | 6 |
| 7 {% include platform-specific-text/_noscript.html %} | 7 {% include platform-specific-text/_noscript.html %} |
| 8 | 8 |
| 9 <h1> {{ page.title }} </h1> | 9 <h1> {{ page.title }} </h1> |
| 10 | 10 |
| 11 | |
| 12 <section> | |
| 13 | |
| 14 <p> | 11 <p> |
| 15 This page tells you how to find and use | 12 This page tells you how to find and use |
| 16 prerelease versions of the Dart SDK on | 13 prerelease versions of the Dart SDK on |
| 17 <span class="linux">Linux.</span> | 14 <span class="linux">Linux.</span> |
| 18 <span class="mac">Mac OS X.</span> | 15 <span class="mac">Mac OS X.</span> |
| 19 <span class="win">Windows.</span> | 16 <span class="win">Windows.</span> |
| 20 <br> | 17 <br> |
| 21 (These instructions are available for | 18 (These instructions are available for |
| 22 <label> | 19 <input type="radio" name="osChoices" id="win"> |
| 23 <input type="radio" name="osChoices" id="win"> | 20 <label class="os-choice" for="win">Windows</label>, |
| 24 Windows</input></label>, | 21 |
| 25 <label> | 22 <input type="radio" name="osChoices" id="linux" checked="true"> |
| 26 <input type="radio" name="osChoices" id="linux" checked="true"> | 23 <label class="os-choice" for="linux">Linux</label>, or |
| 27 Linux</input></label>, and | 24 |
| 28 <label> | 25 <input type="radio" name="osChoices" id="mac"> |
| 29 <input type="radio" name="osChoices" id="mac"> | 26 <label class="os-choice" for="mac">Mac</label>.) |
| 30 Mac</input></label>.) | |
| 31 </p> | 27 </p> |
| 32 | 28 |
| 33 <section> | 29 <section> |
| 34 <h4> Contents </h4> | 30 <h4> Contents </h4> |
| 35 <ul> | 31 <ul> |
| 36 <li> <a href="#download">Getting the SDK</a> </li> | 32 <li> <a href="#download">Getting the SDK</a> </li> |
| 37 <li> <a href="#contents">SDK contents</a> </li> | 33 <li> <a href="#contents">SDK contents</a> </li> |
| 38 </ul> | 34 </ul> |
| 39 </section> | 35 </section> |
| 40 | 36 |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 and the following command-line tools: | 76 and the following command-line tools: |
| 81 </p> | 77 </p> |
| 82 | 78 |
| 83 <ul> | 79 <ul> |
| 84 <li> <a href="/docs/dart2js/">Dart-to-JavaScript compiler</a> (dart2js)</li> | 80 <li> <a href="/docs/dart2js/">Dart-to-JavaScript compiler</a> (dart2js)</li> |
| 85 <li> <a href="/docs/standalone-dart-vm/">Dart VM</a> (dart)</li> | 81 <li> <a href="/docs/standalone-dart-vm/">Dart VM</a> (dart)</li> |
| 86 <li> <a href="/docs/pub-package-manager/">Dart package manager</a> (pub)</li> | 82 <li> <a href="/docs/pub-package-manager/">Dart package manager</a> (pub)</li> |
| 87 </ul> | 83 </ul> |
| 88 </section> | 84 </section> |
| 89 | 85 |
| 90 </section> | |
| 91 | |
| 92 | |
| 93 <script async src="/js/Switcher.dart.js"></script> | 86 <script async src="/js/Switcher.dart.js"></script> |
| OLD | NEW |