Assert Condition
Checks if a condition is true, raising an error if false.
condition (Bool): The condition to check.
Bool
message (String): (Optional) Custom error message.
String
True if successful.
assert(1 == 1) assert(x > 0, "x must be positive")
is_error, error