Skip to content

Instantly share code, notes, and snippets.

@mrcdk
mrcdk / Main.hx
Last active November 25, 2015 17:30 — forked from evanw/Main.hx
class Assert {
public static inline function assert(truth: Bool) {
#if debug
if (!truth) {
trace('assert failed');
}
#end
}
}