Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
``` $ ruby -e "puts 'ruby'.starts_with?('r')" -e:1:in `<main>': undefined method `starts_with?' for "ruby":String (NoMethodError) puts 'ruby'.starts_with?('r') ^^^^^^^^^^^^^ Did you mean? start_with? $ ruby -e "puts 'ruby'.start_with?('r')" true ``` Added in last PR by mistake.
- Loading branch information