First iteration
This commit is contained in:
13
test/fixtures/clean/well-formatted.scm
vendored
Normal file
13
test/fixtures/clean/well-formatted.scm
vendored
Normal 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))
|
||||
Reference in New Issue
Block a user