mirror of
https://github.com/Aider-AI/aider
synced 2026-04-25 17:15:07 +02:00
20 lines
445 B
Common Lisp
20 lines
445 B
Common Lisp
(defun hello-world ()
|
|
;; ai this is a simple hello world function
|
|
(format t "Hello, World!"))
|
|
|
|
(defun add (a b)
|
|
; ai! fix this function to handle nil values
|
|
(+ a b))
|
|
|
|
(defun multiply (a b)
|
|
;;; ai? why is this function not working with large numbers?
|
|
(* a b))
|
|
|
|
; ai this is a single semicolon comment
|
|
|
|
;; ai this is a double semicolon comment
|
|
|
|
;;; ai this is a triple semicolon comment
|
|
|
|
;;;; ai! this is a quadruple semicolon comment
|