Rebol Programming/query

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

USAGE:[edit | edit source]

QUERY target /clear 

DESCRIPTION:[edit | edit source]

Returns information about a file or URL.

QUERY is a native value.

ARGUMENTS:[edit | edit source]

  • target -- (Type: file url block port object)

REFINEMENTS:[edit | edit source]

  • /clear -- Clear modified state of target object

SOURCE CODE[edit | edit source]

query: native[
    "Returns information about a file or URL." 
    target [file! url! block! port! object!] 
    /clear "Clear modified state of target object"
]