yeah my example might be not great. In that assert...
# language-proposals
k
yeah my example might be not great. In that assert example, it could call as if
assert( 2 > 1, “2 is bigger than 1”)
without having to use
assert( { 2 > 1 } ) { “2 is bigger than 1” }
👍 1