eturk/marvin

View on GitHub
lib/marvin/ast/subtraction.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Marvin
  module AST

    # For subtraction of expressions.
    class Subtraction < Arithmetic
    end
  end
end