Format Reducer code

Value: [0.0000001 to 0.0005]
This commit is contained in:
Sam Nolan 2022-04-25 10:00:27 -04:00
parent f97751b989
commit 7e4477aeda

View File

@ -81,7 +81,9 @@ function tag<a, b>(x: a, y: b): tagged<a, b> {
return { tag: x, value: y };
}
export abstract class internalCode { protected opaque!: any }; /* simulate opaque types */
export abstract class internalCode {
protected opaque!: any;
} /* simulate opaque types */
export type squiggleExpression =
| tagged<"symbol", string>