Skip to content

Instantly share code, notes, and snippets.

@kephas
Last active February 7, 2025 23:18
Show Gist options
  • Select an option

  • Save kephas/ebaef5f02167616b1ae3e00ea4b728e9 to your computer and use it in GitHub Desktop.

Select an option

Save kephas/ebaef5f02167616b1ae3e00ea4b728e9 to your computer and use it in GitHub Desktop.
; version originale
(if (> 1 0)
(print "it's correct")
(print "broken"))
; définitions des traductions
(defmacro si (cond alors sinon)
`(if ,cond ,alors ,sinon))
(defun imprime (valeur)
(print valeur))
; version française
(si (> 1 0)
(imprime "c'est correct")
(imprime "cassé"))
(defun ét-on-à-le-drôït-aùx-àccènts ()
(imprime "et oui!"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment