#* * Examples of how to use asserts *# # The built in function assert checks if a condition evaluates to true # and aborts the interpreter if it evaluates to false. # Evaluates to true assert 0 == 0 assert 6 == 2 * 3 # Evaluates to false # assert 1 == 0