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
The i++/++i and i--/--i syntax is pretty common for adding and subtracting 1, respectively.
I'm disappointed with language designers. Has nobody thought of i**/**i syntax?
// Just look how useful it is:
var var i = 7!
print(i**!)! // => 7
print(**i!)! // => 7
I can't tell you how many times I've wanted to multiply an integer by one. I'm sick and tired of i = i * 1.
The text was updated successfully, but these errors were encountered:
The
i++
/++i
andi--
/--i
syntax is pretty common for adding and subtracting 1, respectively.I'm disappointed with language designers. Has nobody thought of
i**
/**i
syntax?I can't tell you how many times I've wanted to multiply an integer by one. I'm sick and tired of
i = i * 1
.The text was updated successfully, but these errors were encountered: