Inspired by some of the other answers to this SO question http://stackoverflow.com/questions/11567823/print-a-line-10-times-in-obj-c/11568151#11568151 your task is to print "Print this line" 10 times in the most creative way possible using your favourite language.
An example (and not very creative) implementation in C is:
#include<stdio.h>
main()
{
for(int i = 0; i < 10; i++)
printf("Print this line\n");
}
Points will be awarded for creativity, and for (ab)using language features such as object orientation, threading, LINQs, pointers etc.
This is not a code golf, so feel free to go overboard, and have fun!


