In C-family languages, we can add a comment inside a line like:
public void my_function(/*int a,*/ int b)
I can't find a way to do so in Ruby and Python, only at the end of a line:
def my_function(a#, b)
In C-family languages, we can add a comment inside a line like:
public void my_function(/*int a,*/ int b)
I can't find a way to do so in Ruby and Python, only at the end of a line:
def my_function(a#, b)