Text only
|
Text with Images
newLISP Fan Club
Forum => newLISP newS => Topic started by: eddier on March 18, 2005, 07:52:20 AM
Title:
implicit indexing
Post by:
eddier
on
March 18, 2005, 07:52:20 AM
Neat! I've not seen anything quite like this before. The first thing after a non-quoted list is not interpreted as a function.
Code
Select
Expand
> (setq a '((1 2) 3))
((1 2) 3)
> (a 1)
3
>
Thyping (a 1 2) is as easy to type as a[1][2] and maybe as easy to read?
Eddie
Text only
|
Text with Images