aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--minimal.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/minimal.py b/minimal.py
index a34941c..8a282da 100644
--- a/minimal.py
+++ b/minimal.py
@@ -151,8 +151,8 @@ def value(x):
def test():
# ((lambda (x) (+ 1 x)) 5) ; 6
v = value( (('lambda', ('x',), ('+', 1, 'x')), 5) )
- print(v)
assert(v is 6)
+ return True
if __name__=='__main__':
- test()
+ print(test())