Skip to content

Instantly share code, notes, and snippets.

@coderberry
Created August 23, 2012 02:14
Show Gist options
  • Select an option

  • Save coderberry/3431365 to your computer and use it in GitHub Desktop.

Select an option

Save coderberry/3431365 to your computer and use it in GitHub Desktop.
w2-e3.rb
>> cost_per_taco = 0.85
=> 0.85
>> taco_count = 3
=> 3
>> total_cost = cost_per_taco * taco_count
=> 2.55
>> cost_per_taco.class
=> Float
>> taco_count.class
=> Fixnum
>> total_cost.class
=> Float
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment