REBOL Programming/write-io

< REBOL Programming

USAGE:

WRITE-IO port buffer length 

DESCRIPTION:

Low level write to a port.

WRITE-IO is a native value.

ARGUMENTS

SOURCE CODE

write-io: native[
    "Low level write to a port." 
    port [port!] "Already opened port to write to" 
    buffer [any-string!] "Buffer to use for write." 
    length [number!] "Maximum number of chars to write"
]
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.