1
2
3
4
module M; end

class A; end
...

Ruby On x.kind_of? MyClass or x.cla...

by Carl Porth, September 10, 2008 16:59 Star_fullStar_fullStar_fullStar_fullStar_full

I tend to see the use of ===

Aedd89a10aba3a46576ea4f604146c65 Talk
1
2
3
4
def caesar(text,n)
  alpha = ('A'..'Z').to_a
  n.times { alpha.push(alpha.shift) }
...

Ruby On Caesar Cipher

by Carl Porth, August 09, 2008 06:49

I've always seen shifts don...

Aedd89a10aba3a46576ea4f604146c65 Talk