Visual LISP

1 program Added 2026-03-12T10:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: VLISP, AutoLISP/Visual LISP
Provenance: commit 5f9832e3a3 · authored 2026-03-12T09:27:02+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

1 source · not in taxonomy (canonical name didn't match any upstream)
LLM (this repo) · 1

Related languages

VLISP (0.64)AutoLISP (0.35)Visual J# (0.22)FemtoLisp (0.20)Visual DataFlex (0.19)

LLM-contributed programs

Fibonacci Sequence

Provenance: commit 5f9832e3a3 · authored 2026-03-12T09:27:02+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.lsp · license: Public Domain · added: 2026-03-12T10:00:00Z
; Fibonacci sequence in Visual LISP (AutoLISP)
; Iterative implementation

(defun fibonacci (n / a b tmp)
  (setq a 0  b 1)
  (repeat n
    (setq tmp b
          b   (+ a b)
          a   tmp))
  a)

(defun c:FIBTEST ( / i)
  (setq i 0)
  (while (< i 10)
    (princ (strcat "\nfib(" (itoa i) ") = " (itoa (fibonacci i))))
    (setq i (1+ i)))
  (princ))

Contribute — propose a file extension

Tell us where to find evidence about Visual LISP (mapped to pl/visual_lisp). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/Visual LISP/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Visual J++ Visual Logic →