Rebol Programming/close

USAGE:

edit
CLOSE port 

DESCRIPTION:

edit

Closes an open port connection.

CLOSE is a native value.

ARGUMENTS

edit
  • port -- (Type: port)

SOURCE CODE

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