<!DOCTYPE HTML>
<html lang="en" ng-app>
<head>
<title>Hello World</title>
<script src="http://code.angularjs.org/1.2.18/angular.min.js" ></script>
</head>
<body>
<ul ng-controller="Test">
<li ng-repeat='a in myArrayOfObjects'>
{{a.q}}
<ul>
<li ng-repeat='b in a.w'>
{{b}}
</li>
</ul>
</li>
</ul>
<script type="text/javascript">
function Test($scope)
{ $scope.myArrayOfObjects = [{q:1, w: [11,22]},{q:2, w: [33,44]}]
}
</script>
</body>
</html>