Skip to content

Instantly share code, notes, and snippets.

View toohuman's full-sized avatar

Michael Crosscombe toohuman

View GitHub Profile

Keybase proof

I hereby claim:

  • I am toohuman on github.
  • I am toohuman (https://keybase.io/toohuman) on keybase.
  • I have a public key whose fingerprint is FC83 281C D0E6 E75C 8CB1 AAAE 1981 A119 5783 C9C7

To claim this, I am signing this object:

@toohuman
toohuman / importidiom.d
Last active March 1, 2018 11:10
Import idiom for D.
template from(string moduleName)
{
mixin("import from = " ~ moduleName ~ ";");
}
...
void fun(from!"std.datetime".SysTime time)
{
import std.stdio;