![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
30/05/2014, 18:38
|
| | Fecha de Ingreso: junio-2012
Mensajes: 7
Antigüedad: 12 años, 8 meses Puntos: 0 | |
Respuesta: Lenguaje de programacion ADA crear y mostrar array de String me respondo a mi mismo es así:
with Ada.Text_IO;
procedure Tester is
package IO renames Ada.Text_IO;
Line : STRING(1..4);
begin
Line := "ADDI";
IO.Put_Line(Line);
end Tester; |