Hello, world!

What better snippet to put in the spotlight first than a classic code introduction... with a twist.

#include <iostream>

int main()
{
    // differences starting at lowercase 'a' (ASCII - 97)
    int charDiffs[] { -25, 4, 11, 11, 14, -53, -65, 22, 14, 17, 11, 3, -64 };

    for (int diff : charDiffs) {
        std::cout << (char) (97 + diff);
    }

    return 0;
}