Movies as code
Home
Genres
Top Posts
All Movies
Top Geeks
Submit
Created by
Ben Howdle of
127 Hours
Sunday, March 11th, 2012 at 11:50 am |
Drama
| by
David Amador
int
main
(
)
{
int
hours
=
0
;
while
(
hours
<
127
)
{
++
hours
;
}
return
1
;
}
Vote up this code
0
chievous
for(int i = 0; i < 127; i++) { System.out.println("hour"); }