Angular+JQ+Bootstrap

HTML

<link rel="stylesheet" href="http://twitter.github.com/bootstrap/assets/css/bootstrap.css">
<script src="http://code.jquery.com/jquery-1.7.2.min.js"></script>
<script src="http://code.angularjs.org/1.0.0rc10/angular-1.0.0rc10.js"></script>
<div ng-controller="MyCtrl">
    {{hello}}
    <input ng-model="hello">
</div>

CoffeeScript

angular.module('myApp', [])

@MyCtrl = ($scope) ->
    $scope.hello = 'hoi!'

angular.bootstrap document, ['myApp']