Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(703)

Side by Side Diff: pkg/docgen/bin/sdk-introduction.md

Issue 25589006: Improve API homepage (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 Welcome to the Dart API reference documentation, 1 Welcome to the Dart API reference documentation,
2 covering the official Dart APIs (dart:*) 2 covering the official Dart API libraries.
3 as well as other packages that live in the Dart project. 3 Some of the most fundamental Dart libraries include:
4 For help using the Dart APIs, also see
5 [www.dartlang.org](https://www.dartlang.org)
6 pages such as the following:
7 4
8 * [Programmer's Guide](https://www.dartlang.org/docs/) 5 * [dart:core](#dart:core):
9 * [A Tour of the Dart Libraries](https://www.dartlang.org/docs/dart-up-and-run ning/contents/ch03.html) 6 Core functionality such as strings, numbers, collections, errors,
10 * [Dart Cookbook](https://www.dartlang.org/docs/cookbook/) 7 dates, and URIs.
11 * [Articles](https://www.dartlang.org/articles/) 8 * [dart:html](#dart:html):
9 DOM manipulation for web apps.
10 * [dart:io](#dart:io):
11 I/O for command-line apps.
12
13 Except for dart:core, you must import a library before you can use it.
14 Here's an example of importing dart:html, dart:math, and a
15 third popular library called
16 [polymer.dart](http://www.dartlang.org/polymer-dart/):
17
18 import 'dart:html';
19 import 'dart:math';
20 import 'package:polymer/polymer.dart';
21
22 Polymer.dart is an example of a library that isn't
23 included in the Dart download,
24 but is easy to get and update using the _pub package manager_.
25 For information on finding, using, and publishing libraries (and more)
26 with pub, see
27 [pub.dartlang.org](http://pub.dartlang.org).
28
29 The main site for learning and using Dart is
30 [www.dartlang.org](http://www.dartlang.org).
31 Check out these pages:
32
33 * [Dart homepage](http://www.dartlang.org)
34 * [Tutorials](http://www.dartlang.org/docs/tutorials/)
35 * [Programmer's Guide](http://www.dartlang.org/docs/)
36 * [Samples](http://www.dartlang.org/samples/)
37 * [A Tour of the Dart Libraries](http://www.dartlang.org/docs/dart-up-and-runn ing/contents/ch03.html)
12 38
13 The API reference is automatically generated from the source code in the 39 This API reference is automatically generated from the source code in the
14 [Dart project](https://code.google.com/p/dart/). 40 [Dart project](https://code.google.com/p/dart/).
15 If you'd like to contribute to this documentation, see 41 If you'd like to contribute to this documentation, see
16 [Guidelines for Dart Doc Comments](http://www.dartlang.org/articles/doc-comment- guidelines/), 42 [Contributing](https://code.google.com/p/dart/wiki/Contributing)
17 [Contributing](https://code.google.com/p/dart/wiki/Contributing), 43 and
18 and, if you're contributing to DOM-related docs such as dart:html, 44 [Writing API Documentation](https://code.google.com/p/dart/wiki/WritingApiDocume ntation).
19 [Contributing HTML Documentation](https://code.google.com/p/dart/wiki/Contributi ngHTMLDocumentation).
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698