# for 1 line of code
Using R Studio, you can do Control+Shift+C, or Command+Shift+C on macOS.
# comment statement : no multiline comments in R
R doesn’t support Multi-line and Documentation comments.
It only supports single-line comments drafted by a ‘#’ symbol.
# Single line comments; multi line comments aren't supported
# use "#" to comment
# Comment in R is similar as comment in Python
# The '#' sign is used for making commnet
# However there is no available syntax for making multiline comment
# so making multiline comment is similar as making more than one single line
# comment