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="henning";
    char* y="basold";
    printf("%s@%s.eu", x, y);
}

C++

#include <iostream>
using namespace std;

int main() {
    string x = "henning";
    string y = "basold";
    cout << x << "@" << y << ".eu";
}

Haskell

main :: IO ()
main =
    let x = "henning"
        y = "basold"
    in putStr (x ++ "@" ++ y ++ ".eu")