Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

James Robertson http://www.r0bertson.co.uk

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

A simple loop in Ruby

This loop repeats 10 times, with each iteration it increments the variable 'i' by 1 and displays it's value.

   1  
   2  i = 0
   3  10.times do
   4    i += 1
   5    puts i
   6  end
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS