Subscribe

2022-07-14 Thread frostbyte
Hello frostbyte :-) You are now subscribed subscribe -- UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe

bug: (hex) - decoding non-hex characters

2022-07-14 Thread frostbyte
(prinl "version: " (version)) (for N (range 0 255) (let C (char N) (when (hex C) (unless (member C (chop "0123456789abcdefABCDEF")) (prinl C ":" (hex C)) ) ) ) ) (bye) --- version: 22.6.30 22630 ::3 ;:4 <:5 =:6 :7 ?:8 @:9 W:0 X:1 Y:2 Z:3 [:4 \:5 ]:6 ^:7 _:8 `:9 --

Re: bug: (hex) - decoding non-hex characters

2022-07-14 Thread Alexander Burger
Hi frostbyte, yes, 'hex' does not verify the input (this was not intended). But you are right. For consistency with other conversion functions like 'format' or 'date' it should do so. I will fix. ☺/ A!ex -- UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe