codeschool-angula-fiddle

http://campus.codeschool.com/courses/shaping-up-with-angularjs

by Debanjan Basu

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', []);