Edit in JSFiddle

Hello, {{ message }}
var app = angular.module('app', []);

app.controller('MainCtrl', function($scope) {
  $scope.message = 'World';
});