# File lib/linguistics.rb, line 77
        def method_missing( sym, *args, &block )
            return super unless self.class.langmod.respond_to?( sym )

            self.class.module_eval %{
                def #{sym}( *args, &block )
                    self.class.langmod.#{sym}( @receiver, *args, &block )
                end
            }, "{Autoloaded: " + __FILE__ + "}", __LINE__

            self.method( sym ).call( *args, &block )
        end