You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
beautiful-racket/beautiful-racket-demo/basic-demo-3/sample-gosub.rkt

10 lines
152 B
Racket

7 years ago
#lang basic-demo-3
7 years ago
10 gosub 41
7 years ago
20 print "second"
7 years ago
30 gosub 100
7 years ago
31 print "fourth"
7 years ago
35 end
40 return
7 years ago
41 print "first" : return
7 years ago
100 print "third"
110 goto 40