AssertTrue function

void AssertTrue(
  1. bool b
)

Implementation

void AssertTrue(bool b) {
  if (!b) {
    // TODO: log.Fatalf("%+v", errors.Errorf("Assert failed"))
    throw "Assert failed";
  }
}