Sha256: 60028927e4362f48a317dd87863406d3c7fec4b90237c766c0dad9a225e1e215
Contents?: true
Size: 395 Bytes
Versions: 1
Compression:
Stored size: 395 Bytes
Contents
#!/usr/bin/ruby load 'framingham/version.rb' load 'framingham/heartdisease.rb' module Framingham extend self def help "Framingham display help info..." end def version "version: " + VERSION end protected def to_i value (value.eql? true or value.to_s == "true" or ( value.to_f != 0 if value.respond_to? 'to_f' )) ? 1 : 0 end end puts self.eval ARGV[0].to_s if ARGV.length !=0
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
framingham-0.0 | framingham.rb |