How do you plan to solve it?
a simple ternary operator
module brake_light ( input brake_pedal, output reg brake_light ); always @(*) begin // Write solution here using if statement brake_light = brake_pedal ? 1'b1 : 1'b0; end endmodule