module SQLiterate

grammar Command
  include Query

  rule commands
    command r:( space ';' space command )*
  end

  rule command
    query / space
  end
end

end