Viktor Holta

Welcome to my site!

I will put content here later. For now this page will just be filled with random stuff (i.e. components and elements to use on the site in the future).

This is a regular link: Niko B - Why's this dealer?

Inline Code

The <code> tag is used to display computer code.

Code Block

The following is a rust macro that returns the max number of a set of numbers.

macro_rules! max {
    ($number:expr) => {
        $number
    };
    ($first:expr, $($rest:expr),+) => {
        std::cmp::max($first, max!($($rest),+))
    };
}