This commit is contained in:
Yadunand Prem
2022-10-13 14:19:42 +08:00
parent 82a1f769fe
commit cdc460bdc7
33 changed files with 1080 additions and 0 deletions

4
Lab6/Cond.java Normal file
View File

@@ -0,0 +1,4 @@
interface Cond {
boolean eval();
Cond neg();
}