https://excel-writer.sourceforge.io/
Author:MIT
Version:19.0.0
Alire CI: Dependencies:No dependency.
Dependents:No dependents.
Badge:
Excel_Out is a standalone, portable Ada package for writing Excel spreadsheets with basic formattings and formulas, easily and programmatically.
The creation of an Excel file is as simple as this small procedure:
with Excel_Out;
procedure Small_Demo is
xl : Excel_Out.Excel_Out_File;
begin
xl.Create ("small.xls");
xl.Put_Line ("This is a small demo for Excel_Out");
for row in 3 .. 8 loop
for column in 1 .. 8 loop
xl.Write (row, column, row * 1000 + column);
end loop;
end loop;
xl.Close;
end Small_Demo;
(*) within limits of compiler’s provided integer types and target architecture capacity.