05AB1E is a golfing language. Its main repository is at https://github.com/Adriandmen/05AB1E.
Questions tagged [05ab1e]
1 questions
3
votes
0 answers
Check if input is integer in 05AB1E
I want to check if the input is a positive integer in the language 05AB1E. This should output something that acts as a boolean. For example,
"oof" ==> false
7.5 ==> false
19 ==> true
...
Is there a way to do this? Numeric strings can output…

Someone
- 202
- 2
- 13