From 9fef0b3f105892c160ba0a11a82be500f023378a Mon Sep 17 00:00:00 2001 From: Igor Bogoslavskyi Date: Sun, 20 Oct 2024 14:10:53 +0200 Subject: [PATCH] Add one small lambda in the end --- animation/lambdas/src/scenes/code.tsx | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/animation/lambdas/src/scenes/code.tsx b/animation/lambdas/src/scenes/code.tsx index b0949da..9c9770c 100644 --- a/animation/lambdas/src/scenes/code.tsx +++ b/animation/lambdas/src/scenes/code.tsx @@ -862,6 +862,15 @@ Sandwich MakeGourmetSandwich() { ); yield* waitFor(duration); + const funny_lambda = `\ +[](){}();` + yield* all( + codeRef().code(funny_lambda, 0), + codeRef().fontSize(85, 0), + codeRef().x(-200, 0), + ); + yield* waitFor(duration); + yield* waitFor(duration); });