Stefano Forti
Address: Department of Computer Science
Largo B. Pontecorvo 3, 56127, Pisa, Italy - Map
Phone: (+39) 050 22 12 759
Room: 279 D/E
To get my email address, simply type the following text
email(Address).
in this magic (Prolog) box
:- use_module(library(lists)).
surname(forti).
country(it).
name(stefano).
institute(unipi).
email(Address) :-
name(F), surname(L),
institute(I), country(C),
atom_concat(F, '.', F1), atom_concat(F1, L, FL), atom_concat(FL, '@', FL1), atom_concat(FL1, I, FLI), atom_concat(FLI, '.', FLI1), atom_concat(FLI1, C, Address).
Copy text here