Rebol Programming/close

From Wikibooks, open books for an open world
Jump to navigation Jump to search

USAGE:[edit | edit source]

CLOSE port 

DESCRIPTION:[edit | edit source]

Closes an open port connection.

CLOSE is a native value.

ARGUMENTS[edit | edit source]

  • port -- (Type: port)

SOURCE CODE[edit | edit source]

close: native[
    "Closes an open port connection." 
    port [port!]
]