One is in \core and one is in \view
If you have followed the wiki-book you may be in the habit of running \core\rebol.exe in which case you may hit two oddities: first, that console does not know how to respond to
desktopand, second, that it cannot respond to
editor ""or the more interesting
editor system/view
The answer is to launch Rebol only using the home directory view.exe
From there you can go back and forth to console and then return to ViewTop using the command
desktop
While you are at it, try
source build-tagor
source to-emailor
type? {this and that}or
reduce [ 2 + 3 + 5 7 ]or
compose ["this" (21 + 21) "that"]or
parse {this that these those} " "and enjoy!
PS. Here are 3 links to console info:
core
shell
quick-start
4 comments:
The Rebol console also responds to editor {} and to editor [] by opening an editor.
try
help halt
and
help escape
Be aware that a single
q
is the same as
quit
try
help rebol
or for something really interesting
editor rebol/words
Good tip has linked to it from
http://www.dzone.com/links/rebol_tip.html
Rebol's newbies visit
http://reboltutorial.com
Post a Comment