@workInProgress
@ngdoc overview
@name Getting Started
@description
# Hello World
The easiest way to get started with angular is to create a basic Hello World app.
# Step 1
In your favorite text editor, create a file called helloworld.html. Copy and paste the following
contents into the file:
Navigate to the file helloworld.html in your browser. The page should look like the screenshot
below:
That's it! Now take another look at helloworld.html. Here's what's going on behind the scenes:
Defines the namespace `ng`, which represents the URL `http://angularjs.org`. You must define the `ng` namespace in your application so the browser understands angular directives like `ng:autobind`.
Sets the `src` attribute of the script tag to `http://code.angularjs.org/angular-?.?.?.min.js` to bootstrap to the angular environment. Uses the `ng:autobind` attribute to compile and manage the whole HTML document. The compilation happens in the page's onLoad handler.
Hello {{'World'}}!
This is the template that describes how this element is displayed in the UI.
Uses the double curly brace markup (`{{}}`) to bind an expression to the greeting text. In this
case the expression is the string literal 'World'.
# Step 3
For a more advanced Hello World example that demonstrates angular's two-way data binding, edit
helloworld.html and replace the contents of the `