How to perform 'Count Vowels' in Ada.
-- Task: Count Vowels
-- Language: Ada
procedure count_vowels() is begin
-- Implementation for Count Vowels
-- TODO: Implement core logic here
-- Step 1: Prepare data
-- Step 2: Process Count Vowels
Put_Line("Done");
end;