Rebol Programming/query
USAGE:
QUERY target /clear
DESCRIPTION:
Returns information about a file or URL.
QUERY is a native value.
ARGUMENTS:
- target -- (Type: file url block port object)
REFINEMENTS:
- /clear -- Clear modified state of target object
SOURCE CODE
query: native[
"Returns information about a file or URL."
target [file! url! block! port! object!]
/clear "Clear modified state of target object"
]