Angular: Checkbox group

http://angularjs.org/

HTML

<script src="http://code.angularjs.org/angular-1.0.0rc8.js"></script>
<script src="http://code.jquery.com/jquery-1.7.2.min.js"></script>
<html ng-app="myapp">
  <body ng-controller="Controller">
      <input type="checkbox" ng-model="x" />111
      <input type="checkbox" ng-model="y" />222
      <input type="checkbox" ng-model="z" />333
      [{{x}}]
  </body>

</html>

JavaScript

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

function Controller($scope) {
}