Advertisement
Guest User

Untitled

a guest
Mar 4th, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ada 0.24 KB | None | 0 0
  1. with Ada.Text_IO;
  2. use Ada.Text_IO;
  3. procedure ejercicio_5 is
  4.    type String is array (Positive range <>) of Character;
  5.    S:constant String:= "TIEMPO REAL";
  6. begin
  7.    for i in S'Range loop
  8.       Put(S(i));
  9.    end loop;
  10.    
  11. end ejercicio_5;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement