From 67738039c33956cc80444dce5543c8fa09e8bc9d Mon Sep 17 00:00:00 2001 From: Owen Jacobson Date: Mon, 13 Nov 2017 04:44:29 -0500 Subject: Fix up missing (begin) in example --- README.rst | 9 +++++---- 1 file 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') -- cgit v1.2.3