[REBOL] Re: source code layout question
From: nitsch-lists:netcologne at: 5-Jan-2002 7:02
RE: [REBOL] Re: source code layout question
Hi Joel
[joel--neely--fedex--com] wrote:
<snip>
> Actually, I've been cutting and pasting with it (just with
> a tad of cheating ;-). I simply type into the console
>
> do [
>
> then paste in whatever I've cut from wherever, then type a
> final
>
> ]
>
> and press return. That bit of extra typing (which does take
> more effort than just using control-C...) wraps everything in
> an extra attention-span-preserving block to keep the console's
> attention until the input expression is explicitly closed by
> the last right bracket.
>
clever :) inspired me to
vv: has[string][
string: read clipboard://
print string
do string
]
protect 'vv;avoid confusion..
now clip something and type "vv" in view-console :)