spacebat / termite

Automatically exported from code.google.com/p/termite
Other
0 stars 0 forks source link

catch (in the documentation) isn't bound #8

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Hi,

It seems that catch (mentioned in the paper about termite) isn't
bound in tsi (neither in Gambit 4.6.0):

 > (node-init (make-node "127.0.0.1" 40000))
 ok
 > (catch
     (lambda (exception) #t)
       (spawn (lambda () (raise 'error)))
       (? 1 'ok)
       #f)  

 *** ERROR IN (console)@2.2 -- Unbound variable: catch
 1> 

Was this was a change in recent versions of Gambit, or is it something that was 
implemented in a different was as described in the paper?

Thanks,
j.

Original issue reported on code.google.com by jeronimo...@gmail.com on 22 Jul 2010 at 7:04