Guest User

Untitled

a guest
Jan 20th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ada 0.16 KB | None | 0 0
  1. with Ada.Text_IO;
  2.  
  3. procedure Main is
  4. begin
  5.    for i in 1 .. 10 loop
  6.       Ada.Text_IO.Put_Line("I'm the number" & Integer'Image(i));
  7.    end loop;
  8. end Main;
Add Comment
Please, Sign In to add comment