m-ender / retina

A regex-based programming language.
MIT License
231 stars 10 forks source link

Default regex for sort stages #57

Closed m-ender closed 8 years ago

m-ender commented 8 years ago

T stages default to the regex [\s\S]+ because an empty regex makes the stage a no-op. The same is true for sort stages, so a default regex would be useful. Probably .+ so that it sorts lines by default.

m-ender commented 8 years ago

Implemented (as .+) in bcf6ec5.