Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zertovitch/excel-writer
Excel Writer: a standalone, portable Ada package for producing Excel spreadsheets
https://github.com/zertovitch/excel-writer
ada ada-language ada-library excel excel-writer excelwriter spreadsheet
Last synced: 14 days ago
JSON representation
Excel Writer: a standalone, portable Ada package for producing Excel spreadsheets
- Host: GitHub
- URL: https://github.com/zertovitch/excel-writer
- Owner: zertovitch
- Created: 2019-09-15T14:51:21.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-08-17T18:20:09.000Z (3 months ago)
- Last Synced: 2024-08-18T06:49:04.147Z (3 months ago)
- Topics: ada, ada-language, ada-library, excel, excel-writer, excelwriter, spreadsheet
- Language: Ada
- Homepage: https://excel-writer.sourceforge.io/
- Size: 454 KB
- Stars: 7
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.txt
Awesome Lists containing this project
- awesome-ada - excel-writer - Create Excel files with basic formats. (Libraries / Format Readers, Writers and Checkers)
README
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