Subject: Re: CLOS: read only slots?
From: Erik Naggum <erik@naggum.no>
Date: 1999/09/11
Newsgroups: comp.lang.lisp
Message-ID: <3146034386741697@naggum.no>

* Harley Davis
| (And I think the only successful strategy these days to promote new
| languages is large-scale, loss-leading corporate sponsorship, similar to
| Sun's with Java and Microsoft's with C++ and Basic, where first-degree
| money-losing promotion of a language is intended to have secondary
| benefits for the corporation via platform application availability.  So
| the next chance for Lisp will be the next generation popular software
| platform, probably in another 5 years.  Better have something ready to
| dust off by then, guys!)

  two immediate thoughts: (1) is the money spent on languages this way
  actually recovered, or are they marketing vehicles and thus merely
  marketing costs for something else?  (2) does unlimited source access
  help recover the money spent or just help promote the language (and
  depending on question 1, helpful to that something else)?

| C is pretty much the epitome of simple, predictable efficiency models.
:
| Simplicity isn't important to you but it is important to beginning and
| intermediate users, I would wager.

  OK, so if we set the baseline for both simple and predictable at C, I
  would say that we don't need it _that_ simple.  for instance, there are
  no basic operationgs in C that are worse than O(1).  in Common Lisp, = is
  O(n), but /= is O(n²).  in C, (lo <= x && x <= hi) requires computing x
  twice if it isn't known to be unchanging, and it's fast, because the
  types are known, but in CL, it may surprise people used to the C mindset
  that (<= lo x hi) is usually a function call away, but (TYPEP x '(INTEGER
  lo hi)) is fast and inlined (when lo and hi are constants, obviously).  I
  think the latter is simple, too, but it is clearly predicated on having
  groked the dynamic typing concept.  does this make it less simple, or
  only simple in non-C terms?

  let's make it as simple as possible, but no simpler.  (incidentally, is
  this a Feynmanism, or was it Einstein?)

#:Erik
-- 
  it's election time in Norway.  explains everything, doesn't it?