--> 演算子
新しい演算子が採用されたようです。
# include <iostream> int main() { int x = 10; do { std::cout << x << '\n'; } while(x --> 0); }
10 9 8 7 6 5 4 3 2 1 0
ネタ元 : What is the name of this operator: “-->”? (stackoverflow)
while だと 10 が出力されないので do-while にしました。
こういうの好き。