| OLD | NEW |
| 1 Sky Script Language | 1 Sky Script Language |
| 2 =================== | 2 =================== |
| 3 | 3 |
| 4 The Sky script language is based on Dart. | 4 The Sky script language is based on Dart. |
| 5 | 5 |
| 6 It has the following differences from Dart: | 6 It has the following differences from Dart: |
| 7 | 7 |
| 8 - the 'library', 'part', 'import', 'export', and 'part of' directives | 8 - the 'library', 'part', 'import', 'export', and 'part of' directives |
| 9 are not supported in sky (sky has its own module system) | 9 are not supported in sky (sky has its own module system) |
| 10 | 10 |
| 11 - ``<script>`` elements parse ``topLevelDefinition``s (there is no | 11 - ``<script>`` elements parse ``topLevelDefinition``s (there is no |
| 12 ``libraryDefinition`` construct in the Sky Script Language). | 12 ``libraryDefinition`` construct in the Sky Script Language). |
| 13 | 13 |
| 14 The way that Sky integrates the module system with its script language | 14 The way that Sky integrates the module system with its script language |
| 15 is described in (modules.md)[modules.md]. | 15 is described in [modules.md](modules.md). |
| OLD | NEW |