RosettaCodeData/Task/Repeat-a-string/Ada/repeat-a-string.adb

8 lines
183 B
Ada
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
with Ada.Strings.Fixed; use Ada.Strings.Fixed;
with Ada.Text_IO; use Ada.Text_IO;
procedure String_Multiplication is
begin
Put_Line (5 * "ha");
end String_Multiplication;