diff options
author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-03-07 23:48:04 -0700 |
---|---|---|
committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-03-07 23:48:04 -0700 |
commit | 634b2c1b69b9cc107546b12e710fc2daec53fcec (patch) | |
tree | 27b3396a227ace81fea583c62fbb36458cb1eebe /src/engine/levels/Tutorial.ts | |
parent | ea6c1eef48ba8d39defdd8cd78adc45ae660caf9 (diff) | |
download | the-abstraction-engine-634b2c1b69b9cc107546b12e710fc2daec53fcec.tar.gz the-abstraction-engine-634b2c1b69b9cc107546b12e710fc2daec53fcec.zip |
minor bug fixes
Diffstat (limited to 'src/engine/levels/Tutorial.ts')
-rw-r--r-- | src/engine/levels/Tutorial.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/engine/levels/Tutorial.ts b/src/engine/levels/Tutorial.ts index 165b10f..694c8ff 100644 --- a/src/engine/levels/Tutorial.ts +++ b/src/engine/levels/Tutorial.ts @@ -22,8 +22,7 @@ export class Tutorial extends Level { new Wall({ x: 11, y: 10 }), new Curry({ x: 10, y: 10 }), new LockedDoor({ x: 9, y: 10 }), - new LambdaFactory({ x: 6, y: 3 }, "(λ (x) . x)", 3), - + new LambdaFactory({ x: 6, y: 3 }, "// TODO: Remove line\n(λ (x) . x)", 3), new FunctionApplication({ x: 6, y: 6 }, "(_INPUT key)"), ]; |