Object Oriented Programming

for (int x = 0; x < 10; x++)
{
   System.out.print ("Hello");
}

In Squeak, an implementation of Smalltalk, it would look like so:
10 timesRepeat: [Transcript show: 'Hello '.].