Guest User

Untitled

a guest
Sep 2nd, 2018
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ada 0.36 KB | None | 0 0
  1. with simple_io, gnat.directory_operations;
  2. use simple_io, gnat.directory_operations;
  3.  
  4. procedure creation_attribut is
  5. fichier : file_type;           
  6. nomattribut : string(1..10):= (others => ' ');
  7. L : Integer;
  8. begin
  9.  
  10. PUT("saisir le nom de l attribut a creer :");
  11. get_line(nomattribut, L);
  12. create(fichier,out_file, nomattribut);
  13.  
  14.  
  15. Close(fichier);
  16.  
  17. end maketablev2;
Add Comment
Please, Sign In to add comment