Edit in JSFiddle

<body ng-app>
    <div ng-controller="MsgController">
       {{ Message }}
    </div>
</body>
function MsgController($scope) {
    $scope.Message = "測試一下";
}