#lang scheme/base (require "main.ss") (define-entry-point foo (display "foo")(newline)) (define-entry-point bar (display "Z҉A҉L҉G҉O҉")(newline)) (main-begin (display "This is where the main program would run, but that doesn't mean there needs to be only one entry point.") (newline)) (main-begin (display "Can have two main begin areas... not sure if the order in which they execute should be specified.") (newline))