feat: broken

This commit is contained in:
2026-01-12 20:58:41 -05:00
parent 6418e05255
commit b588754552
2 changed files with 7 additions and 7 deletions

View File

@@ -3,7 +3,9 @@
identity := \x.x # This is an end-of-line comment
# Define a simple function that applies a function twice
twice := \f.\x.(f (f x))
twice := \f.\x.(f
# Comments can be anywhere!
(f x))
# Test that comments don't interfere with expressions
result := (twice identity VALUE) # Should just return VALUE