Skip to content
Snippets Groups Projects
Commit 611b8cc7 authored by Adrien Lescourt's avatar Adrien Lescourt
Browse files

Fix infinite loop at the end of test_sglib.adb

parent cae5d282
No related branches found
No related tags found
No related merge requests found
......@@ -15,6 +15,7 @@ git clone https://githepia.hesge.ch/iti_logiciel_public/ada_sglib.git /home/monU
Compilation de la librairie (ignorer les 'warning')
```
cd /home/monUsername/ada_sglib
gcc -c Xdraw.c
gnatmake -c sglib.adb
ar rc libSglib.a *.o
......
......@@ -2,7 +2,6 @@ with Sglib; use Sglib; -- Définition des paquetages utilises
procedure TEST_SGLIB is
-- Procedure principale dessinant textes et figures:
A : Integer;
begin
-- Initialisation de la fenetre X:
INITX(100,100,400,400);
......@@ -68,7 +67,7 @@ begin
end loop ;
-- Attente infinie:
loop
A:=A+1;
Null;
end loop ;
-- -- Fermeture de la fenêtre X:
--CLOSEX;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment