diff options
Diffstat (limited to '4/practice_problem_4_9_hcl_xor.hcl')
| -rw-r--r-- | 4/practice_problem_4_9_hcl_xor.hcl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/4/practice_problem_4_9_hcl_xor.hcl b/4/practice_problem_4_9_hcl_xor.hcl new file mode 100644 index 0000000..bb474e7 --- /dev/null +++ b/4/practice_problem_4_9_hcl_xor.hcl @@ -0,0 +1,3 @@ +bool eq = (a && b) || (!a && !b) + +bool xor = (!a && b) || (a && !b) |
