IO.put(3kaya) Kaya module reference IO.put(3kaya)NAMEIO::put - Write a string to a file.SYNOPSISVoid put( File handle, String val )ARGUMENTShandle A file handle opened for writing or appending val The string to writeDESCRIPTIONWrite a string to a file. Unlike IO.putStr(3kaya) this will not write a NULL terminator to the file, and so should be used when dealing with non-binary files. put(stdout,str) is equivalent to Builtins::putStr(str)AUTHORSKaya standard library by Edwin Brady, Chris Morris and others (kaya@kayalang.org). For further information see http://kayalang.org/LICENSEThe Kaya standard library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License (version 2.1 or any later version) as published by the Free Software Foundation. Kaya October 2012 IO.put(3kaya)