Angular - Hello World

Simplest Angular app.

by Wijmo

HTML

<script src="http://code.angularjs.org/angular-1.0.1.js"></script>
<body ng-app="" ng-init="msg='hello world'">
  <input ng-model="msg" />
    <p>{{msg}}</p>
</body>