REBOL [
Title: "REBOL Prompt Setter"
Date: 16-Jun-1999
Author: "Bohdan Lechnowsky"
Email: bo@rebol.com
File: %set-prompt.r
Purpose: {
Demonstrates how to set the prompt in REBOL
}
Category: [script util 2]
]
;Set system/console prompt
set-console: func ['word value] [
set in system/console word value
]
set-console prompt [
rejoin ["(" now/time ") " what-dir newline ">> "]
]