changeset 486 | 9c03b5e89a2a |
parent 485 | 19b75e899d37 |
child 487 | efad9725dfd8 |
--- a/marking4/re_test1.scala Fri Apr 26 17:29:30 2024 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -import CW9c._ - -assert(nullable(ZERO) == false) -assert(nullable(ONE) == true) -assert(nullable(CHAR('a')) == false) -assert(nullable(ZERO | ONE) == true) -assert(nullable(ZERO | CHAR('a')) == false) -assert(nullable(ONE ~ ONE) == true) -assert(nullable(ONE ~ CHAR('a')) == false) -assert(nullable(STAR(ZERO)) == true) -