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