codeschool-angula-fiddle
http://campus.codeschool.com/courses/shaping-up-with-angularjs
HTML
<div ng-app="store">
<p>{{1+1}}</p>
</div>
JavaScript
// !!! Importent : Set this script's load type to "No-wrap in head"
'use strict';
// Define the store module
var app = angular.module('store', []);