#pragma XOD dirtieness disable
struct State {
};
{{ GENERATED_CODE }}
void evaluate(Context ctx) {
Number lhs = getValue<input_L>(ctx);
Number rhs = getValue<input_R>(ctx);
emitValue<output_OUT>(ctx, lhs == rhs);
}| L | R | OUT |
| 10.5 | 10.5 | true |
| 5 | 10.5 | false |
| 10.5 | 5 | false |