First iteration

This commit is contained in:
2026-04-01 23:35:50 +02:00
commit d0115672dd
29 changed files with 3553 additions and 0 deletions

13
test/fixtures/clean/well-formatted.scm vendored Normal file
View File

@@ -0,0 +1,13 @@
;;; A well-formatted Guile source file.
;;; This should produce zero surface diagnostics.
(define-module (test well-formatted)
#:export (greet add))
;; Greet a person by name.
(define (greet name)
(string-append "Hello, " name "!"))
;; Add two numbers.
(define (add a b)
(+ a b))