summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.rst9
1 files changed, 5 insertions, 4 deletions
diff --git a/README.rst b/README.rst
index 9dfef88..b5e0b37 100644
--- a/README.rst
+++ b/README.rst
@@ -227,11 +227,12 @@ Actinide functions returne a tuple of results rather than a single value:
::
session.run('''
- ; Set a variable
- (define x 5)
+ (begin
+ ; Set a variable
+ (define x 5)
- ; Define a function that reads the variable
- (define (get-x) x)
+ ; Define a function that reads the variable
+ (define (get-x) x))
''')
get_x = session.get('get-x')