You've already forked ada_language_server
mirror of
https://github.com/AdaCore/ada_language_server.git
synced 2026-02-12 12:45:50 -08:00
7 lines
97 B
Ada
7 lines
97 B
Ada
with Ada.Text_IO;
|
|
|
|
procedure Print (S : String) is
|
|
begin
|
|
Ada.Text_IO.Put_Line (S);
|
|
end Print;
|