var app = angular.module('plunker', []);

app.controller('MainCtrl', function($scope) {
  $scope.myObjects = [{name: "foo"}, {name: "bar"}];
  $scope.myNumbers = [10, 20, 30];
});
<!doctype html>
<html ng-app="plunker" >
<head>
  <meta charset="utf-8">
  <title>AngularJS Plunker</title>
  <script>document.write("<base href=\"" + document.location + "\" />");</script>
  <link rel="stylesheet" href="style.css">
  <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.5/angular.js"></script>
  <script src="app.js"></script>
</head>
<body ng-controller="MainCtrl">
  <div>parent scope: {{myNumbers}}</div>
  <br />
  <div ng-repeat="num in myNumbers">
    <input type="text" ng-model="num">
    <div>current scope: {{num}}</div>
    <br />
  </div>
</body>
</html>
/* Put your css in here */