Tagged Questions

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 ...