Home
Feedback Tracker
Search
Configure Global Search
Log In
Transactions
T74991
Change Details
Change Details
Old
New
Diff
Use this weird looking code: { _i = 0; while {_i < 20} do { _i = _i + 1; sleep 1; }; } and now check out how good it would look with the ++ operator: { _i = 0; while {_i < 20} do { _i++; sleep 1; }; }
Use this weird looking code: { _i = 0; while {_i < 20} do { _i = _i + 1; sleep 1; }; } and now check out how good it would look with the ++ operator: { _i = 0; while {_i < 20} do { _i++; sleep 1; }; }
Continue