| OLD | NEW |
| 1 --- | 1 --- |
| 2 layout: default | 2 layout: default |
| 3 title: "Technical Overview" | 3 title: "Technical Overview" |
| 4 --- | 4 --- |
| 5 <h1>Technical Overview </h1> | 5 <h1>Technical Overview </h1> |
| 6 | 6 |
| 7 <section> | 7 <section> |
| 8 <p> | 8 <p> |
| 9 Dart is a new class-based programming language | 9 Dart is a new class-based programming language |
| 10 for creating structured web applications. | 10 for creating structured web applications. |
| 11 Developed with the goals of simplicity, efficiency, and scalability, | 11 Developed with the goals of simplicity, efficiency, and scalability, |
| 12 the Dart language combines powerful new language features | 12 the Dart language combines powerful new language features |
| 13 with familiar language constructs into a clear, readable syntax. | 13 with familiar language constructs into a clear, readable syntax. |
| 14 </p> | 14 </p> |
| 15 | 15 |
| 16 <aside class="note"> | 16 <aside> |
| 17 <b>Note:</b> | 17 <div class="alert alert-info"> |
| 18 This document is part of an early preview of | 18 <strong>Note:</strong> |
| 19 the Dart language and programming environment. | 19 This document is part of an early preview of |
| 20 Some elements are missing from the current release, | 20 the Dart language and programming environment. |
| 21 and the details are subject to change based on the feedback we receive. | 21 Some elements are missing from the current release, |
| 22 </aside> | 22 and the details are subject to change based on the feedback we receive. |
| 23 </div> |
| 24 </aside> |
| 23 | 25 |
| 24 <h4> Contents </h4> | 26 <h4> Contents </h4> |
| 25 | 27 |
| 26 <ol class="toc"> | 28 <ol class="toc"> |
| 27 <li> <a href="#key">Key features</a> </li> | 29 <li> <a href="#key">Key features</a> </li> |
| 28 <li> <a href="#goals">Design goals</a> </li> | 30 <li> <a href="#goals">Design goals</a> </li> |
| 29 <li> <a href="#code">Show me the code </a> | 31 <li> <a href="#code">Show me the code </a> |
| 30 <ol> | 32 <ol> |
| 31 <li> <a href="#classes">Classes and interfaces </a> </li> | 33 <li> <a href="#classes">Classes and interfaces </a> </li> |
| 32 <li> <a href="#optional-types">Optional types </a> </li> | 34 <li> <a href="#optional-types">Optional types </a> </li> |
| (...skipping 450 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 483 <li> | 485 <li> |
| 484 <a href="https://groups.google.com/a/dartlang.org/group/misc/">Dart | 486 <a href="https://groups.google.com/a/dartlang.org/group/misc/">Dart |
| 485 discussion group</a> (misc at dartlang.org) </li> | 487 discussion group</a> (misc at dartlang.org) </li> |
| 486 <li> | 488 <li> |
| 487 <a href="https://plus.google.com/109866369054280216564/">+Dart</a> on Google
+ </li> | 489 <a href="https://plus.google.com/109866369054280216564/">+Dart</a> on Google
+ </li> |
| 488 </ul> | 490 </ul> |
| 489 | 491 |
| 490 </section> <!-- involved --> | 492 </section> <!-- involved --> |
| 491 | 493 |
| 492 | 494 |
| OLD | NEW |