Hello, world

· #meta

This site is built with Zola and a hand-rolled theme. Here is some C++ so the syntax highlighting has something to chew on:

#include <cstdio>

template <class T>
constexpr T square(T x) { return x * x; }

int main() {
    std::printf("%d\n", square(12));
}

And a little Rust:

fn main() {
    let xs: Vec<u64> = (1..=10).map(|x| x * x).collect();
    println!("{xs:?}");
}

Inline code, emphasis, strong, and a blockquote:

Simple stays simple.