# Increment a numerical string

```ruby
say '1234'.inc    #=> '1235'
say '99'.inc      #=> '100'
```
