Open
Description
I'm not sure if it's my implementation or an issue with the engine, but string comparison operators greater and smaller than are causing an abort.
let x = '0';
let y = '9';
let result = x < y; // abort()
It seems that there's a test for it which is working properly, and I can confirm there's no issue with the JavaScript based engine, but it is not working with the C engine for me.