What is hashtag symbol | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

What is hashtag symbol

11th Sep 2017, 6:05 AM
Aman Agnihotri
Aman Agnihotri - avatar
3 Answers
+ 14
#not just comments it is used for variable names inside strings too. #copy paste the text and run in codeplayground a = 5 while (a == 5) puts "a = #{a}" # variable a inside a string parsed here a +=2 # necessecary to terminate the condition end p "a is #{a} now "# a is now 7
11th Sep 2017, 6:35 AM
Lord Krishna
Lord Krishna - avatar
+ 4
# <-- everything on this line after the hashtag symbol is a comment and will be ignored when your code runs.
11th Sep 2017, 6:23 AM
ChaoticDawg
ChaoticDawg - avatar
+ 2
Oh ya, that too. lol
11th Sep 2017, 6:39 AM
ChaoticDawg
ChaoticDawg - avatar