05AB1E
05AB1E copied to clipboard
A concise stack-based golfing language
Using the sentence capitalization builtin is great to capitalize the first letter of a sentence or word without changing existing capital letters (unlike the titlecase builtin, which changes everything to...
Well, the title basically says it all. When using the Greatest Common Divisor on an empty list, it results in an error instead of the expected `0`. [Try it online...
Title says it all. Similar as some other bugs regarding decimals not being interpret as strings. [Try it online to reproduce.](https://tio.run/##yy9OTMpM/f9fyVDPQClYQUdBqTy/KLtYIbFYITOvJDUvJTVFKYYLKBmsoIBL1sgaJAmSTclPLc5TL1EAqVKK@f8fAA)
If we have an iterator (i.e. map/loop) and use the `.Γ` builtin (cumulative fixed-point) inside it and close it afterwards with `}`, the item `y` will become the last value...
Similar issue as some other bugs, where the floating point should be converted to a string before we can use a builtin to get its first or last digit/character. [Try...
In the new version of 05AB1E the builtin `j` can be used to pad leading spaces up to the given length (so the wiki is outdated in that regard as...
The recursive environment builtin `λ` seems to not reset when using it inside another iterator like a loop/map. [Try it online to reproduce.](https://tio.run/##yy9OTMpM/f8/xPDc7kOLDbUVFGp1FBQUlMLzi7KLFRKLFTLzSlLzUlJTlGK4IGqMiFBjDFZzaJs9dkXGrn6hEIUR2kCjMNUopOUXKZRkpCqkZRYVlyhklqQWJZZk5ufpKCSVlijk5ZfAFeQDiSKF/LzUYqWY//8B) [Came across it in this codegolf answer...
Just like some of the other bugs, the `Ų` builtin doesn't work on decimal values, like `4.0`, `9.0`, etc. [Try it online to reproduce.](https://tio.run/##yy9OTMpM/f/f5HDroU0KQKCjoBSeX5RdrJBYrJCZV5Kal5KaohTDZaJnAFGBQ97CGmoAUN4lP7U4T71EoRyoDix1aDma3vLMkgyFxBSgVoXkxOIShZJ8heKSosy8dIWEQ8sTlGL@/wcA) [Came across it in this codegolf...
I wasn't expecting to find a bug so soon again after posting all those others last week, but just came across this: When you use a filter `ʒ` and the...
Let's say we have a string input, and we want to count how many ones and zeros it contains. Using `TS¢` works fine, because `TS` will result in the string-list...