(define (two-args-proc arg1 arg2) (display "called") (newline)) (define (main) (two-args-proc)) (main)