export function createSubstitution(
    v: string | undefined = undefined,
    expr: ILCExpression | undefined = undefined // To conveniently make a substitution with a single entry.
): ILCSubstitution {
    return new LCSubstitution(v, expr);