public static void LetCmd(CodeConverter C, CodeWriter writer, EocCallExpression callExpr)
        {
            var target = callExpr.ParamList[0];

            C.WriteLetExpression(writer, target, () => callExpr.ParamList[1].WriteToWithCast(writer, target.GetResultType()));
        }