Angular starting point

by otupman

HTML

<div ng-controller="MyCtrl">
    <p>{{message}}</p>
</div>

JavaScript

function MyCtrl($scope) {
    $scope.message = "Hello, world";
}