Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
    <html ng-app="app">
    <head>
        <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.7/angular.min.js"></script>
    </head>
    <body ng-controller="TextController">
        <p>{{mytext}}</p>
    </body>
    <script>
        angular.module('app', []).controller('TextController', TextController);
        function TextController($scope) {
            $scope.mytext = "hello world";
        }
    </script>
    </html>
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
joaozitopolopro
0viewers