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
// Works
f(x) = {
2*x
}
// Doesn't work
// i.e., comments after the definition don't get
// the correct syntax highlighting.
g(x) = {
y = 1/x
f(y)
}
// test comment which goes wrong.
h(x) = {
y = f(x)
y
}
// comments are displayed correctly