*Hopefull this hasn't been done already*
Write a program that when run, will print out the numbers 1 through 10. The program can be in any language, and can be as complicated or simple as you want.
Lets see how creative people are, and get up to 500 unique ways!
I'll start out with something simple:
C++
#include <iostream>
int main() {
int x = 1, y = 10;
while(y--)
std::cout << x++ << std::endl;
}
EDIT: I guess we'll let the post count determine the number of different ways that have been produced.