getline . files . sncode
latest
Get a line
PUTS
NAME
puts - Put string
SYNOPSIS
puts(file_descriptor, str...)
puts(file:file_descriptor, str...)
DESCRIPTION
This function is used put a string in a file.
This function is avalaible from version 5.131 of sncode.
EXAMPLES
fd = open(create:true,write:true,append:false,"/tmp/tw");
puts(file:fd, "1");
puts(file:fd, "2", "3");
puts(fd, "4", "5");
close(fd);
AUTHOR
Written by Pierre Laplante, <laplante@sednove.com>