Guest User

Untitled

a guest
May 25th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. def downfirstchar(s)
  2. firstchar = s.size > 0 ? s[0].chr.downcase : ''
  3. remainder = s.size > 1 ? s[1,s.size] : ''
  4. firstchar + remainder
  5. end
Add Comment
Please, Sign In to add comment