NewLisp competition

Started by newdep, March 01, 2005, 03:24:14 PM

Previous topic - Next topic

Grundle

#15
Does flashy mean functionality-wise?  I hope so, because I do mostly console apps.  Oh wait i know..I'll make an OS implementation and call it



nLispux

statik

#16
newLISPdows?



windows nlisp?



lispix!



Yeah, I've got nothing.
-statik

Lutz

#17
I think it could be Kozoru code as well, if it is a self-contained testable piece and Kozoru has no objections in opening it to the public. As far as I know they are planning to open source several pieces.



Regarding 'flashy' I don't think the contest is limited to GUI stuff.



Lutz

newdep

#18
GO for it ! ;-)
-- (define? (Cornflakes))

Dmi

#19
here my first contribution ;-)
(set 'parts '(
  ("" "System " "Sys")
  ("new" "n" "no")  ;-)
  ("Lisp" "L")
  ("" "ix" "ux" "X" "OS")))

(define (newLisp-OS-names l s)
  (if (empty? l)
    (println s)
    (dolist (p (l 0))
      (newLisp-OS-names (1 l) (append s p)))))
     
(newLisp-OS-names parts "")


about newLisp OS names for Grundle of course ;-)
WBR, Dmi