There must be something else I need to do here, but I'm not sure what.
<div ng-app="theApp">
<p> 1 + 2 = {{ 1 + 2}} </p>
</div>
var theApp = angular.module("theApp", []);
With AngularJS 1.2 added is giving:
1 + 2 = {{ 1 + 2 }}
If I remove the ng-app attribute, then it gives the expected result.
