Boolean literals are either true or false, using the true
or false
keyword:
val a = true
val b = false
val c = 1 > 2
val d = 1 < 2
val e = a == c
val f = b == d
a should be(res0)
b should be(res1)
c should be(res2)
d should be(res3)
e should be(res4)
f should be(res5)
Prepare repository for next release and SBT build improvements (#200)
juanpedromoreno contributed 2020-06-18T14:07:50ZUpdate documentation and other files (#170) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
47erbot contributed 2020-04-24T08:34:44Z