Tagged Questions
2
votes
3answers
220 views
Order of operations question in Ruby
I'm initializing an instance of a class that tests the equality of two formulas.
The formula's calculated values are in fact equal:
RubyChem::Chemical.new("SOOS").fw
=> 96.0
...
1
vote
2answers
241 views
What is the order of operations with this concatenation?
x = "hello" " world".to_sym
puts x.class
This works and allows me to concatenate the two strings into a symbol, producing the output:
Symbol
But if I change it slightly to use a + instead of ...