index
:
csapp.git
master
Unnamed repository; edit this file 'description' to name the repository.
Mike Vink
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
4
/
practice_problem_4_9_hcl_xor.hcl
blob: bb474e7d64f7f8c9f6428d0cfa615d932b99488f (
plain
)
1
2
3
bool
eq
= (
a
&&
b
)
||
(!
a
&& !
b
)
bool xor
= (!
a
&&
b
)
||
(
a
&& !
b
)