radian628 / desmoscript

Desmos scripting language and successor to LISPsmos.
101 stars 8 forks source link

Dev server crashes with specific single-line expressions. #3

Closed radian628 closed 1 year ago

radian628 commented 1 year ago

This code causes the server to crash with a vague error message:

"Desmoscript minimal example"
y = x;

Xmin = 3;
Ymin = -3;

Xmax = 5;
Ymax = 5;

z = match {
    (Xmin == 1) => match {
        (Xmin == 4) => Ymin;
        7;
    };
    3;
};

polygon()