Skip to content

Instantly share code, notes, and snippets.

View judasRV's full-sized avatar
🎯
Focusing

Yo'ochel Judas judasRV

🎯
Focusing
View GitHub Profile
;; come usare il (format )
;~ (setq *stmp-case* :capitalize)
(format t " Il mio nome e ~a ~% " "Jakob")
(format t " Numero con virgole ~:d ~% " 1000000)
(format t " PI con 5 personaggi ~5f ~% " 3.141593)
;; stampa sullo schermo
(defvar *nome* (read))
(defun videre-tu(*nome*)
(format t "Hello ~a! " *nome*)
)
/**
* Polimorfismo.cxx
*/
#include <iostream>
#include <new>
using std::string;
using std::cout;
using std::endl;