Not knowing Lisp, but,...

shouldn't Rebol
'a
be like Lisp
(quote a)

[+ 1 2]
be like Lisp
(quote (+ 1 2))

not any-series? something
be like Lisp
(atom? something)

Regards,
    Ladislav

> What are the Rebol equivalents of Lisp's "atom?" and "quote" ? 
> 
> It appears that 
> given two blocks 
> mylist: [1 2 3] 
> myotherlist: [4 5 6] 
> 
> first mylist 
> is like
> (car mylist) 
> 
> mylist: next mylist 
> is like
> (cdr mylist) 
> 
> insert/only mylist myotherlist 
> is like
> (cons myotherlist mylist)
> 
> 
> 

Reply via email to