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'm not sure how many supported languages don't have line comments, but in OCaml there are only block comments. This means that when toggle_comments is used it puts an empty block comment at the beginning of the line.
Instead of:
(* let a = 1 *)
You end up with
(**)let a =1
The text was updated successfully, but these errors were encountered:
I'm not sure how many supported languages don't have line comments, but in OCaml there are only block comments. This means that when
toggle_comments
is used it puts an empty block comment at the beginning of the line.Instead of:
(* let a = 1 *)
You end up with
The text was updated successfully, but these errors were encountered: