Last active
February 7, 2025 23:18
-
-
Save kephas/ebaef5f02167616b1ae3e00ea4b728e9 to your computer and use it in GitHub Desktop.
Revisions
-
kephas revised this gist
Feb 7, 2025 . 1 changed file with 11 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,15 +1,25 @@ ; 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!")) -
kephas created this gist
Sep 23, 2024 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,15 @@ (if (> 1 0) (print "it's correct") (print "broken")) (defmacro si (cond alors sinon) `(if ,cond ,alors ,sinon)) (defun imprime (valeur) (print valeur)) (si (> 1 0) (imprime "c'est correct") (imprime "cassé"))