Sha256: e988ab297bf651d8884b40316224599d23322152d0fc0294d5f1f301b8c81a22
Contents?: true
Size: 464 Bytes
Versions: 29
Compression:
Stored size: 464 Bytes
Contents
# Author:: Eric Crane (mailto:eric.crane@mac.com) # Copyright:: Copyright (c) 2019 Eric Crane. All rights reserved. # # Multiplication operator. # module GlooLang module Expr class OpMult < GlooLang::Core::Op # # Perform the operation and return the result. # def perform( left, right ) return left * right.to_i if left.is_a? Integer return left * right.to_f if left.is_a? Numeric end end end end
Version data entries
29 entries across 29 versions & 1 rubygems