Terminal control/Hiding the cursor: Difference between revisions

Ada version
(→‎{{header|Wren}}: Updated to v0.4.0.)
(Ada version)
Line 2:
 
The task is to hide the cursor and show it again.
 
=={{header|Ada}}==
{{libheader|ANSIAda}}
<lang Ada>with Ada.Text_Io;
 
with Ansi;
 
procedure Hiding is
use Ada.Text_Io;
begin
Put ("Hiding the cursor for 2.0 seconds...");
delay 0.500;
Put (Ansi.Hide);
delay 2.000;
Put ("And showing again.");
delay 0.500;
Put (Ansi.Show);
delay 2.000;
New_Line;
end Hiding;</lang>
 
=={{header|Arturo}}==
210

edits