# File lib_wpm/wpm.rb, line 3438
    def initialize(filename)
      @mod = Module.new
      File.open(filename) { |input|
        @mod.module_eval(input.read)
      }
    end