From 0c476e92e1807928ffb30864126076ef4c6a0821 Mon Sep 17 00:00:00 2001 From: Elizabeth Hunt Date: Tue, 13 Feb 2024 20:00:02 -0700 Subject: add all the stuff --- src/scenes/the_lambda_calculus.tsx | 40 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 src/scenes/the_lambda_calculus.tsx (limited to 'src/scenes/the_lambda_calculus.tsx') diff --git a/src/scenes/the_lambda_calculus.tsx b/src/scenes/the_lambda_calculus.tsx new file mode 100644 index 0000000..7a3e692 --- /dev/null +++ b/src/scenes/the_lambda_calculus.tsx @@ -0,0 +1,40 @@ +import { Layout, Txt, makeScene2D } from "@motion-canvas/2d"; +import { + Direction, + beginSlide, + createRef, + slideTransition, +} from "@motion-canvas/core"; +import { theme } from "../theme"; + +const lambdaRules = [ + '1. "x": A variable is a character or string representing a parameter, and is a valid lambda term.', + '2. "(λ x . t)" is an "abstraction" - a function definition, taking as input the \nbound variable x and returning the lambda term t.', + '3. (M N) is an "application", applying a lambda term M with a lambda term N.', +]; + +export default makeScene2D(function* (view) { + const rules = createRef(); + + view.add( + + + The Lambda Calculus + + + + ); + + yield* slideTransition(Direction.Right); + yield* beginSlide("The Lambda Calculus"); + + for (const rule of lambdaRules) { + yield* rules().text(rules().text() + "\n\n" + rule, 1); + yield* beginSlide("rule - " + rule); + } +}); -- cgit v1.2.3-70-g09d2