Top Level Namespace
Defined Under Namespace
Classes: Gui
Instance Method Summary collapse
Instance Method Details
#c ⇒ Object
13 14 15 16 17 |
# File 'lib/cf_conv.rb', line 13 def c y = $var1 $textfield.delete('1.0', 'end') $textfield.insert('end', "#{(y * 9/5) + 32} Fahrenheit") end |
#f ⇒ Object
20 21 22 23 24 |
# File 'lib/cf_conv.rb', line 20 def f x = $var2 $textfield.delete('1.0', 'end') $textfield.insert('end', "#{(x - 32) * 5/9} Centigrade") end |