diff options
Diffstat (limited to 'src/engine/components/LambdaTerm.ts')
-rw-r--r-- | src/engine/components/LambdaTerm.ts | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/engine/components/LambdaTerm.ts b/src/engine/components/LambdaTerm.ts new file mode 100644 index 0000000..63e9889 --- /dev/null +++ b/src/engine/components/LambdaTerm.ts @@ -0,0 +1,11 @@ +import { Component, ComponentNames } from "."; + +export class LambdaTerm extends Component { + public code: string; + + constructor(code: string) { + super(ComponentNames.LambdaTerm); + + this.code = code; + } +} |