What are the various meanings of the Ruby sharp/number sign/pound/hash(#) symbol
How many contexts does the symbol #
in Ruby have ?
I know that #` represents comment
# a comment
or 'convert to the value':
i = 1
print "#{i}" # simple example
However I also see some Ruby docs describe built-in methods like these:
Array#fill
File::file?
Why do they describe the same thing using 2 different symbols ? I am new in Ruby. Thanks