From 99164b32f3aeef6723f90096ac2bea465bc5ee45 Mon Sep 17 00:00:00 2001 From: John Sarkela Date: Thu, 11 Sep 2025 12:14:08 -0400 Subject: [PATCH] added scheme test --- homework/tbdTest.rkt | 13 +++++++++++++ lectures/index.md | 3 ++- 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 homework/tbdTest.rkt diff --git a/homework/tbdTest.rkt b/homework/tbdTest.rkt new file mode 100644 index 0000000..c449a25 --- /dev/null +++ b/homework/tbdTest.rkt @@ -0,0 +1,13 @@ +#lang racket + +(require rackunit "tbd.rkt") + +(define hw-tests + (test-suite "scheme unit tests" + + (test-case "test fail" + (begin + (check-equal? 3 4))))) + +(require rackunit/gui) +(test/gui hw-tests) diff --git a/lectures/index.md b/lectures/index.md index a1941a9..fe2704b 100644 --- a/lectures/index.md +++ b/lectures/index.md @@ -1,4 +1,5 @@ # CS322 lecture notes * [semiotics](./semiotics.md) * [languages and machines](./chomsky.md) -* [all about names](./names.md) \ No newline at end of file +* [all about names](./names.md) +* [lambda calculus](./lambda.md) \ No newline at end of file