This PR introduces the `assert!` variant `debug_assert!` that is activated when compiled with `buildType` `debug`. --------- Co-authored-by: Mac Malone <tydeu@hatpress.net>
4 lines
85 B
Text
4 lines
85 B
Text
def main : IO Unit := do
|
|
assert! true
|
|
--debug_assert! true
|
|
debug_assert! false
|