From 2e69bbda33da80be0f2bfd13603c1a3b64cd12a1 Mon Sep 17 00:00:00 2001 From: Matthew Butterick Date: Tue, 28 Feb 2017 17:06:55 -0800 Subject: [PATCH] fix sample --- beautiful-racket-demo/basic-demo-3/sample-gosub.rkt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/beautiful-racket-demo/basic-demo-3/sample-gosub.rkt b/beautiful-racket-demo/basic-demo-3/sample-gosub.rkt index ece7daa..3baa242 100644 --- a/beautiful-racket-demo/basic-demo-3/sample-gosub.rkt +++ b/beautiful-racket-demo/basic-demo-3/sample-gosub.rkt @@ -1,10 +1,10 @@ #lang basic-demo-3 10 gosub 41 -20 print "world" +20 print "second" 30 gosub 100 -31 print "hi" +31 print "fourth" 35 end 40 return -41 print "hello" : return +41 print "first" : return 100 print "third" 110 goto 40 \ No newline at end of file