mirror of
https://github.com/ruuda/rcl.git
synced 2025-12-23 04:47:19 +00:00
This means that not every value is pretty-printable, which not so nice. I need to make an RCL pretty printer to enable this first.
10 lines
241 B
Text
10 lines
241 B
Text
assert true, "This assertion should pass.";
|
|
assert false, "This assertion should fail.";
|
|
0
|
|
|
|
# output:
|
|
stdin:2:8
|
|
╷
|
|
2 │ assert false, "This assertion should fail.";
|
|
╵ ^~~~~
|
|
Error: Assertion failed. This assertion should fail.
|