Skip to content

Instantly share code, notes, and snippets.

@lithtle
Created November 5, 2012 07:23
Show Gist options
  • Save lithtle/4015792 to your computer and use it in GitHub Desktop.
Save lithtle/4015792 to your computer and use it in GitHub Desktop.
python の range みたいな。(yield の練習)
#! /usr/bin/env ruby -Ku
# -*- coding:utf-8 -*-
def range(s, e, jump=1)
(s...e).step(jump) do |i|
yield i
end
end
# test
range(1, 10, 2) do |i|
i # => 1, 3, 5, 7, 9
end
range(1, 10) do |i|
i # => 1, 2, 3, 4, 5, 6, 7, 8, 9
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment