blambeau/qrb

View on GitHub
lib/finitio/syntax/literal/real.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Finitio
  module Syntax
    module Literal
      module Real
        include Literal

        def value
          ::Kernel.Float(to_str)
        end

      end # module Real
    end # module Literal
  end # module Syntax
end # module Finitio