• Stars
    star
    7
  • Rank 2,222,955 (Top 46 %)
  • Language
    Ada
  • Created over 4 years ago
  • Updated 4 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Excel Writer: a standalone, portable Ada package for producing Excel spreadsheets
Excel Writer 
============

The Excel Writer consists of an Ada package, Excel_Out,
which produces Excel files - as physical files, or as
other types of data streams.

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 ("Hello world !");
    xl.Close;
  end;


License
=======
Excel Writer is licensed under the MIT License.


====

Full description in: excel_writer.txt