# File Compilerbau2.rb, line 369
        def save(file)
         require 'yaml'
         gramma = Grammar.new(to_s)
         File.open(file,"w"){|data|
           YAML.dump(gramma,data)
         }
        end