diff options
Diffstat (limited to 'src/engine/levels/Tutorial.ts')
-rw-r--r-- | src/engine/levels/Tutorial.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/engine/levels/Tutorial.ts b/src/engine/levels/Tutorial.ts index 97a6826..fc927da 100644 --- a/src/engine/levels/Tutorial.ts +++ b/src/engine/levels/Tutorial.ts @@ -36,6 +36,7 @@ export class Tutorial extends Level { }); }); + // TODO: new level which adds introductory syntax const entities = [ ...grasses, new Sign( @@ -51,7 +52,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 }, "// TODO: Remove line\n(λ (x) . x)", 3), + new LambdaFactory({ x: 6, y: 3 }, "// TODO: Remove this comment\n(λ (x) . x)", 3), new FunctionApplication({ x: 6, y: 6 }, "(_INPUT _KEY)"), new Player({ x: 2, y: 2 }), ]; |