Skip to content

Instantly share code, notes, and snippets.

@thedeemon
thedeemon / dn.d
Last active April 20, 2020 09:35
import std.stdio;
// secret sauce: https://dlang.org/spec/class.html#alias-this
struct DayNum {
int dn;
alias dn this; // this line makes DayNum look like an int with dn as the value
}
DayNum next(DayNum d) {