Welcome to the CHICKEN Scheme pasting service
include weirdness pasted by dieggsy on Wed Jul 24 05:57:19 2019
#!/usr/bin/csi -ss
(define (main #!optional args)
(include "include.scm")
(include "include2.scm")
(define that "hey")
(ho)
(this))
include.scm pasted by dieggsy on Wed Jul 24 05:58:07 2019
(define (ho)
(print that))
include2.scm added by dieggsy on Wed Jul 24 05:58:41 2019
(define (this)
(print that))