Created
September 3, 2013 16:48
-
-
Save diegonakamashi/6426451 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html ng-app> | |
| <head> | |
| <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.0.7/angular.min.js"></script> | |
| </head> | |
| <body ng-init="bairroDoLimoeiro=['Mônica', 'Magali', 'Cascão', 'Cebolinha']"> | |
| <table> | |
| <tr ng-repeat="pessoa in bairroDoLimoeiro"> | |
| <td>{{pessoa}}</td> | |
| </tr> | |
| </table> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment