Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
epidemian
GitHub Repository: epidemian/gravity
Path: blob/master/test/expression/math/expression_with_+-.gravity
1214 views
#unittest {
	name: "expression with +- and -+ sequences.";
	error: NONE;
	result: -9;
};

func main () {
    var a = (2+-3)*4-+5;
	return a;
}