Angular Hello World
HTML
<script src="http://www.datatables.net/release-datatables/media/js/jquery.dataTables.min.js"></script>
<div ng-controller="main">
<input ng-model="test.$myOwnVal"></input>
<div>{{test.$myOwnVal}}</div>
</div>
CoffeeScript
angular.module('controllers', [])
.controller('main', ['$scope', (s)->
s.test = {}
s.test.$myOwnVal = "Hello"
s.$watch 'test', (v) ->
console.debug(v)
, true
])
angular.module('HelloWorld', ['controllers'])
angular.bootstrap(document, ['HelloWorld'])