Scroll to navigation

IO.put(3kaya) Kaya module reference IO.put(3kaya)

NAME

IO::put - Write a string to a file.

SYNOPSIS

Void put( File handle, String val )

ARGUMENTS

handle A file handle opened for writing or appending
val The string to write

DESCRIPTION

Write 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)

AUTHORS

Kaya standard library by Edwin Brady, Chris Morris and others (kaya@kayalang.org). For further information see http://kayalang.org/

LICENSE

The 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.
August 2014 Kaya