diff options
author | ubq323 <ubq323@ubq323.website> | 2024-06-26 13:11:00 +0100 |
---|---|---|
committer | ubq323 <ubq323@ubq323.website> | 2024-06-26 13:11:00 +0100 |
commit | c1ad2da9bd1497737c46c53e27f915cc26bc49a6 (patch) | |
tree | 5f701f22a0eed7d09056e1eafe1d60a9a48832a9 /tests/func1.bth | |
parent | 63206b605c36140f2bd476e054b8318c8b08f472 (diff) |
remove explicit toplevel (do ...) from tests
Diffstat (limited to 'tests/func1.bth')
-rw-r--r-- | tests/func1.bth | 5 |
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) |