File size: 371 Bytes
d8ff16a | 1 2 3 4 5 6 7 8 9 | {
"name": "task_easy_and_missing_paren",
"difficulty": "easy",
"description": "Fix the syntax error in the two-input AND gate. The assign expression has an unmatched parenthesis.",
"bug_type": "syntax",
"hint": "Look at the assign line and balance the parentheses.",
"expected_sim_output": "a b | y\n-------\n0 0 | 0\n0 1 | 0\n1 0 | 0\n1 1 | 1"
}
|