Skip to content

Instantly share code, notes, and snippets.

@judasRV
Created December 9, 2017 05:57
Show Gist options
  • Save judasRV/72aff5ee90ed86ad62b21a664ad8c254 to your computer and use it in GitHub Desktop.
Save judasRV/72aff5ee90ed86ad62b21a664ad8c254 to your computer and use it in GitHub Desktop.
;; stampa sullo schermo
(defvar *nome* (read))
(defun videre-tu(*nome*)
(format t "Hello ~a! " *nome*)
)
(setq *print-case* :capitalize)
(videre-tu *nome*)
;; variabili e aritmetica
(print (+ 5 4 )) ; = 9
(print (+ (* 6 6) 4 )) ; = 40
(defvar *num* 0) ; inizzializa a 0
(setf *num* 12) ; cambia a 12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment