Skip to content

Instantly share code, notes, and snippets.

@sranso
Last active December 28, 2015 15:09
Show Gist options
  • Select an option

  • Save sranso/7520217 to your computer and use it in GitHub Desktop.

Select an option

Save sranso/7520217 to your computer and use it in GitHub Desktop.
Iteration: for a blog post
#javascript
for (var i=0; i<3, i++)
{
console.log("hello");
};
#ruby
3.times do |i|
puts "hello" unless i == 3
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment