Everybody else's fiddle is working, I based my code on theirs but for some reason it is not working.
http://jsfiddle.net/prarg2zg/1/
I am seeing the curly brackets which usually disappear when angular kicks in.
HTML
<div ng-controller="MyCtrl">
<table>
<thead>
<th>Name</th>
<th>Age</th>
</thead>
<tr ng-repeat="person in people">
<td>{{name}}</td>
<td>{{age}}</td>
</tr>
</table>
</div>
JS
var myApp = angular.module('myApp', []);
function MyCtrl($scope) {
$scope.people = [{
name: "test",
age: 18
}, {
name: "test2",
age: 18
}, {
name: "Test1",
age: 18
}];
}