Rebol Programming/close

USAGE:

CLOSE port 

DESCRIPTION:

Closes an open port connection.

CLOSE is a native value.

ARGUMENTS

  • port -- (Type: port)

SOURCE CODE

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