Lisp Machine Research Lab

Symbolics Genera Workstation

This is a research-based browser workstation inspired by Symbolics Genera and Dynamic Windows. It is not the original proprietary Genera OS, but it is designed to feel close in workflow: a Listener, documentation panes, object inspection, and Lisp-first interaction.

Listener Select Input
Inspector Object Browser

No object selected yet.

Evaluate an expression to inspect the result here.

System Status

Machine: Ivory-inspired browser workstation

Operating style: Genera / Dynamic Windows homage

Mode: Common Lisp style listener with local evaluator

Reality check: Original Genera remains proprietary and host-bound; this page recreates the workflow, not the licensed OS binary.

Documentation Command Reference

Try these forms in the Listener:

  • (help)
  • (+ 1 2 3 4)
  • (list :symbolics :genera :listener)
  • (define greeting "hello")
  • (if (> 8 3) "yes" "no")
  • (let ((x 9) (y 4)) (+ x y))
  • (quote (a b c))
  • (car (quote (first second third)))
  • (cdr (quote (first second third)))
  • (cons "alpha" (quote ("beta" "gamma")))

The evaluator supports numbers, strings, symbols, quoted lists, if, let, define, lambda, progn, arithmetic, comparisons, and list operations.

Return to base