test: add Racket test case and fixture

This commit is contained in:
Paul Gauthier (aider) 2025-03-12 15:18:47 -07:00
parent 1ab6c70ac7
commit a776d70e0d
2 changed files with 10 additions and 1 deletions

View file

@ -0,0 +1,8 @@
#lang racket
;; Define a simple greeting function
(define (greet name)
(string-append "Hello, " name "!"))
;; Example usage
(greet "World")