JSFiddle - React, Tailwind, and code Playground

HTML

<script src="https://code.angularjs.org/1.4.0-beta.4/angular.js"></script>
<div ng-app="myApp">
<div>Hello AJS</div>
<div> Sum of 2 and 3 is: {{ 2 + 3}}
    <div ng-controller="MyController">
        Message: {{ message }} 
    </div>
</div>

JavaScript

angular.module('myApp', [])
.controller("MyController", function($scope) {
     $scope.message = "My Message Is Super Awesome";
});