Community
Participate
Working Groups
Expecting a null value when I use the ?: operator with a null string EGL code: program tester type BasicProgram {} function main() nullStr string? = null; valueStr string = "Red bull"; resultStr string? = nullStr ?: valueStr; if (resultStr == null ) syslib.writeStdOut("?: successful"); else syslib.writeStdOut(":? failure"); end end end
fixed
Closing this defect.