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
Add ... as a "hole" which acts an an inline comment.
let x = ...;
func f(...) => ...;
func g(x){print(x);
...print(y);}
In place of an expression, ... could potentially evaluate to a runtime "not implemented" error. In any other place it should act as a comment without affecting surrounding code.
The text was updated successfully, but these errors were encountered:
thinker227
changed the title
Add ... comment token/expression
Add ... hole token/expression
Apr 20, 2024
Add
...
as a "hole" which acts an an inline comment.In place of an expression,
...
could potentially evaluate to a runtime "not implemented" error. In any other place it should act as a comment without affecting surrounding code.The text was updated successfully, but these errors were encountered: