Load ???

I found the definition about load function was too
simple in REBOL Documention,I've a bit confusion
about it:
a: load "hello"
==hello
type? a
word!
b: load "hello world"
==[hello world]
type? b
block!
c: load ask "input: "
input: "hello world"
type? c
string!
;ask funtion return string?
d: load [rebol [] hello world]
type? d
block!
e: load http://www.rebol.com/index.html
Syntax Error:Invalid word --computers
....
g: load pop://id:[EMAIL PROTECTED]
type? g
block!

how about all above?
--gerry

Reply via email to