VLISP

1 program Added 2026-02-06T08:36:20Z Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: Visual LISP
Provenance: commit dc482f1dc0 · authored 2026-02-06T09:37:20+01:00 · agent claude-code · model sonnet

Sources mentioning this language

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

Related languages

Visual LISP (0.64)Visual J# (0.29)Lisp (0.28)Visual DataFlex (0.26)FoxPro (0.25)

LLM-contributed programs

Draw Circle with User Input

Provenance: commit dc482f1dc0 · authored 2026-02-06T09:37:20+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.lsp · added: 2026-02-06T08:36:20Z
(defun c:drawcircle (/ pt rad)
  (setq pt (getpoint "\nSpecify center point: "))
  (if pt
    (progn
      (setq rad (getdist pt "\nSpecify radius: "))
      (if rad
        (command "._circle" pt rad)
        (princ "\nRadius not specified.")
      )
    )
    (princ "\nCenter point not specified.")
  )
  (princ)
)

Contribute — propose a file extension

Tell us where to find evidence about VLISP (mapped to pl/vlisp). 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/VLISP/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← vlibtemplate vml →