Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: Silenceing the double equal

From: Gary:Jones:usap:gov at: 29-Apr-2004 13:14

From: paul porter Is it possible to turn of the "=="? I've tried loading rebol with "./rebol -q", and "./rebol --quite"; neither one seems to do the trick. An input will be greatly appreciated. **** Hi, Paul, What you seek can be found under the console prompts:
>> probe system/console
make object! [ history: ["probe system/console"] keys: none prompt: ">> " result: "== " escape: "(escape)" busy: "|/-\" tab-size: 4 break: true ]
>> probe system/console/result
== == "== "
>> system/console/result: "" >> d: 1
1 Hope that helps. --Scott Jones