Learn How to Create Your Own Programming Language http://createyourproglang.com
Professional Code Audit & Refactoring Service http://sauteapps.com
1 2 3 4
module M; end class A; end ...
I tend to see the use of ===
def caesar(text,n) alpha = ('A'..'Z').to_a n.times { alpha.push(alpha.shift) } ...
I've always seen shifts don...
I tend to see the use of ===