in reply to Returning data to parent program
The easy way would be to use a database like SQLite or to use another kind of temporary file to which your program writes and your friends program reads from. Good formats for structured data would be CSV (Text::CSV_XS) or JSON JSON::XS.
The best approach is to talk to your friend what format they can read most easily.
|
|---|