title | category | tags | intro | |
---|---|---|---|---|
Ruby 2.1 |
Ruby |
|
Quick reference to the [new features in Ruby 2.1](https://www.ruby-lang.org/).
|
# length is required
def pad(num, length:, char: "0")
num.to_s.rjust(length, char)
end
pad(42, length: 6) #=> "000042"
pad(42) #=> #<ArgumentError: missing keyword: length>
prepend(
Module.new do
define_method ...
end
)