I'm newbie at AngularJS. Just wrote a simple Hello World to play with Angular. It seems it doesn't work and I can't understand why.
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>Hello Angular World</title>
</head>
<body>
<h1 ng-controller="HelloWorldCtrl">{{HelloAngularWorld}}</h1>
<script src="angular.js"/>
<script type="text/javascript">
function HelloWorldCtrl($scope) {
$scope.HelloAngularWorld = "Hi World of Angular!";
}
</script>
</body>
</html>
Could you please point on my mistake?