Hello World
by rsmclaug
HTML
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css">
<script src="//cdnjs.cloudflare.com/ajax/libs/underscore.js/1.4.4/underscore-min.js"></script>
<div ng-controller="MainController">
<div>
<label>Name:</label>
<input type="text" ng-model="yourName" placeholder="Enter a name here"/>
<h1>Hello {{yourName}}!</h1>
</div>
</div>
JavaScript
var app = angular.module('myApp', []);
app.controller('MainController', function($scope) {
$scope.yourName = "Rich";
});