blob: b8a56af9a91b6d2001c4738c16523ff2d0752cdd [file]
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Example - example-example13-debug</title>
<script src="../../../angular.js"></script>
</head>
<body ng-app="">
<script>
function Ctrl($scope) {
$scope.name = 'Whirled';
}
</script>
<div ng-controller="Ctrl">
Enter name: <input type="text" ng-model="name"><br>
Hello <span ng-bind="name"></span>!
</div>
</body>
</html>