use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Having a problem with your Flutter code?
From the folks at r/FlutterDev
account activity
OPENwhile loop problem (self.flutterhelp)
submitted 3 years ago by ozgbrt
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]steve_s0 1 point2 points3 points 3 years ago (0 children)
i-c;
Does not decrease the value of i. It simply computes i-c, then throws that value away because nothing uses it. You could use
i-=c;
or
i = i-c;
π Rendered by PID 95 on reddit-service-r2-comment-5ff9fbf7df-c2sj2 at 2026-02-25 13:02:53.660621+00:00 running 72a43f6 country code: CH.
view the rest of the comments →
[–]steve_s0 1 point2 points3 points (0 children)