summaryrefslogtreecommitdiff
path: root/tests/func1.bth
diff options
context:
space:
mode:
authorubq323 <ubq323@ubq323.website>2024-06-26 13:11:00 +0100
committerubq323 <ubq323@ubq323.website>2024-06-26 13:11:00 +0100
commitc1ad2da9bd1497737c46c53e27f915cc26bc49a6 (patch)
tree5f701f22a0eed7d09056e1eafe1d60a9a48832a9 /tests/func1.bth
parent63206b605c36140f2bd476e054b8318c8b08f472 (diff)
remove explicit toplevel (do ...) from tests
Diffstat (limited to 'tests/func1.bth')
-rw-r--r--tests/func1.bth5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/func1.bth b/tests/func1.bth
index c46e956..e55f23a 100644
--- a/tests/func1.bth
+++ b/tests/func1.bth
@@ -1,3 +1,2 @@
-(do
- (set f (fn (_) 42))
- (f 0))
+(set f (fn (_) 42))
+(f 0)