Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
@CozyPlanes is that colon or semicolon in for statement of bad practice, my eyes are hurting need to sleep.
-
@Mitiko i know that, but when i do that, my teacher says automation is bad. Do it yourself....
Fuck
Related Rants
Not adding spaces in for statements.
ex) bad practice
for (i=0;i<10:i++)
{
//some code
}
ex) good practice
for (i = 0; i < 10; i++)
{
//some code
}
undefined
wk47