Skip to content

Commit 320dae9

Browse files
committed
Update showcase code
1 parent 574af61 commit 320dae9

File tree

1 file changed

+17
-5
lines changed

1 file changed

+17
-5
lines changed

index.html

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,15 +40,18 @@ <h1>
4040
# Multiple definition
4141
true = not false
4242

43-
# Invalid names
44-
%value = ()
45-
4643
# Invalid whitespace (tabs)
4744
whitespace = ()
4845

49-
# Bare term
46+
# Bare lambda
5047
(\ f x . f (x x))
5148

49+
# Bare term
50+
const f x
51+
52+
# Symbols
53+
< a b c > => < a a a >
54+
5255
# Unbound
5356
some-func = \ local . true non-existent local
5457

@@ -58,9 +61,18 @@ <h1>
5861
# Debug mode on
5962
#debug
6063

61-
# Bare term - Debug
64+
# Invalid names - Debug
65+
%value = ()
66+
67+
# Bare lambda - Debug
6268
(\ f x . f (x x))
6369

70+
# Bare term - Debug
71+
const f x
72+
73+
# Symbols - Debug
74+
< a b c > => < a a a >
75+
6476
# Unbound - Debug
6577
some-func = \ local . true non-existent local
6678

0 commit comments

Comments
 (0)