Why can't I print the length of a constant string? This is my code:
#!/usr/bin/ruby
Name = "Edgar Wallace"
name = "123456"
puts "Hello, my name is " + Name
puts "My name has " + Name.to_s.length + " characters."
I've already read "How do I determine the length of a Fixnum in Ruby?", but unfortunately it didn't help me.
After trying, this error is thrown:
./hello.rb:7:in `+': can't convert Fixnum into String (TypeError)
from ./hello.rb:7:in `<main>'
Use interpolation
"#{}"
in Ruby. It will evaluate your expression and print your string:Note: You can not use interpolation if you are using a string with single quotes('). Use it with double quotes.