Skip to content

Instantly share code, notes, and snippets.

@tyrotinal
Created May 7, 2013 05:04
Show Gist options
  • Save tyrotinal/5530363 to your computer and use it in GitHub Desktop.
Save tyrotinal/5530363 to your computer and use it in GitHub Desktop.
rails: simple for loop to sum numbers from 1 to 5
<h1>Simple for loop</h1>
<h1>Here we are going to count</h1>
<p>This is a simple for loop</p>
<% sum = 0 %>
<% for i in 1..5 %>
<% sum = sum+i %>
<h3><%= "sum is #{sum}" %></h3>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment