in reply to how to store data in file with out using print

The simple answer is: NO!
There is NO way to save a value to a file without writing to that file! "print" is a way to write to a file. There are other ways, but they all call print or something that print calls.

I am just guessing that you want to save and access parm values in a simple database, for example a ".ini" file. I would suggest that you look at this module: Config::INI.

  • Comment on Re: how to store data in file with out using print