You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would love the option to start linewise comments before indentation, like so:
fnmain(){let x = 5;// let y = 7;}
I prefer this method of commenting because it keeps the lines of code at the same level of indentation as opposed to the current method, which offsets them like so:
fnmain(){let x = 5;// let y = 7;}
Note that this would still allow nesting comments, like so:
fnmain(){let x = 5;// if x == 5 {// // println!("x is 5!");// do_something_using(x);// }}
fnmain(){let x = 5;// if x == 5 {// // println!("x is 5!");// do_something_using(x);// }}
The text was updated successfully, but these errors were encountered:
I would love the option to start linewise comments before indentation, like so:
I prefer this method of commenting because it keeps the lines of code at the same level of indentation as opposed to the current method, which offsets them like so:
Note that this would still allow nesting comments, like so:
The text was updated successfully, but these errors were encountered: