Henning Basold

E-Mail in other languages

If you prefer another programming language over the λ-calculus, then you may find my email address expressed, perhaps including your favourite, in other languages here.

C

#include<stdio.h>

int main() {
    char* x="h.basold";
    char* y="liacs.leidenuniv";
    printf("%s@%s.nl", x, y);
}

C++

#include <iostream>
using namespace std;

int main() {
    string x = "h.basold";
    string y = "liacs.leidenuniv";
    cout << x << "@" << y << ".nl";
}

Haskell

main :: IO ()
main =
    let x = "h.basold"
        y = "liacs.leidenuniv"
    in putStr (x ++ "@" ++ y ++ ".nl")