Little fun game. Write a program segment that prints the
numbers from 1 to 10, You can use any language you wish, and
any legal syntax of that chosen language to do so. Let's see how many
ways there are to do so in as many languages as possible.

I'll Start

Language Ada:

Code:
with Ada.Text_IO;
use Ada.Text_IO;

for I in 1 .. 10 loop
  Put_Line (I);
end loop;