|
|
|
|
|
by brabel
228 days ago
|
|
> your example seems to be made entirely of regular Latin alphabets. Portuguese is a direct descendant of Latin. But it has quite a bit of punctuation, OP just ignored that as the programming language, C, does not support it. In Common Lisp you can happily go: (when verificação (print “pessoa é maior de idade”))
You could even go all the way: (defmacro quando (cond corpo) ‘(when ,cond ,@corpo)
(defun imprime (x) (print x))
; now we can do this
(quando verificação (imprime “pessoa é maior de idade”))
|
|