This feed contains pages in the “java” category.
C/C++/Perl:
while(foo)
{
bar(foo);
}
Python:
while foo:
bar(foo)
Ruby:
while foo
bar foo
end
Java:
while(foo != null)
{
bar(foo);
}
Notice a pattern?
Add a comment
This feed contains pages in the “java” category.
C/C++/Perl:
while(foo)
{
bar(foo);
}
Python:
while foo:
bar(foo)
Ruby:
while foo
bar foo
end
Java:
while(foo != null)
{
bar(foo);
}
Notice a pattern?