Skip to content

Instantly share code, notes, and snippets.

@adagio
Last active August 29, 2015 14:05
Show Gist options
  • Save adagio/dbf64b0993f3a5bc0b1e to your computer and use it in GitHub Desktop.
Save adagio/dbf64b0993f3a5bc0b1e to your computer and use it in GitHub Desktop.
Basic minimun Angular implementation
var app = angular.module('store', []);
<!DOCTYPE html>
<html ng-app="myApp">
<head>
<script type="text/javascript" src="angular.min.js"></script>
<script type="text/javascript" src="app.js"></script>
</head>
<body>
<p>I am {{20 + 8}}</p>
<p>{{"hello" + " you"}}</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment